Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: sky/compositor/rasterizer_ganesh.cc

Issue 854303002: Sky should use an SkPicture when drawing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sky/compositor/rasterizer_ganesh.h"
6
7 #include "base/debug/trace_event.h"
8 #include "mojo/skia/ganesh_surface.h"
9 #include "sky/compositor/layer_host.h"
10 #include "third_party/skia/include/core/SkCanvas.h"
11 #include "third_party/skia/include/core/SkPicture.h"
12
13 namespace sky {
14
15 RasterizerGanesh::RasterizerGanesh(LayerHost* host) : host_(host) {
16 DCHECK(host_);
17 }
18
19 RasterizerGanesh::~RasterizerGanesh() {
20 }
21
22 scoped_ptr<mojo::GLTexture> RasterizerGanesh::Rasterize(SkPicture* picture) {
23 TRACE_EVENT0("sky", "RasterizerGanesh::Rasterize");
24
25 auto cull_rect = picture->cullRect();
26 gfx::Size size(cull_rect.width(), cull_rect.height());
eseidel1 2015/01/20 02:04:03 gfx::rect doesn't have a .size()?
abarth-chromium 2015/01/20 02:47:38 It's an SkRect. I've added in the type.
27
28 mojo::GaneshSurface surface(host_->ganesh_context(),
29 host_->resource_manager()->CreateTexture(size));
30
31 SkCanvas* canvas = surface.canvas();
32 canvas->drawPicture(picture);
33 canvas->flush();
34
35 return surface.TakeTexture();
36 }
37
38 } // namespace sky
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698