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

Side by Side Diff: cc/resources/content_layer_updater.cc

Issue 12426024: cc: Switch RenderingStats collection in Layer::Update() to RenderingStatsInstrumentation (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase to 190965 Created 7 years, 9 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
« no previous file with comments | « cc/resources/content_layer_updater.h ('k') | cc/resources/image_layer_updater.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/resources/content_layer_updater.h" 5 #include "cc/resources/content_layer_updater.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/debug/trace_event.h"
8 #include "base/time.h" 8 #include "base/time.h"
9 #include "cc/debug/rendering_stats.h" 9 #include "cc/debug/rendering_stats_instrumentation.h"
10 #include "cc/resources/layer_painter.h" 10 #include "cc/resources/layer_painter.h"
11 #include "third_party/skia/include/core/SkCanvas.h" 11 #include "third_party/skia/include/core/SkCanvas.h"
12 #include "third_party/skia/include/core/SkPaint.h" 12 #include "third_party/skia/include/core/SkPaint.h"
13 #include "third_party/skia/include/core/SkRect.h" 13 #include "third_party/skia/include/core/SkRect.h"
14 #include "third_party/skia/include/core/SkScalar.h" 14 #include "third_party/skia/include/core/SkScalar.h"
15 #include "ui/gfx/rect_conversions.h" 15 #include "ui/gfx/rect_conversions.h"
16 #include "ui/gfx/rect_f.h" 16 #include "ui/gfx/rect_f.h"
17 17
18 namespace cc { 18 namespace cc {
19 19
20 ContentLayerUpdater::ContentLayerUpdater(scoped_ptr<LayerPainter> painter) 20 ContentLayerUpdater::ContentLayerUpdater(
21 : painter_(painter.Pass()) {} 21 scoped_ptr<LayerPainter> painter,
22 RenderingStatsInstrumentation* stats_instrumentation)
23 : painter_(painter.Pass()),
24 rendering_stats_instrumentation_(stats_instrumentation) {}
22 25
23 ContentLayerUpdater::~ContentLayerUpdater() {} 26 ContentLayerUpdater::~ContentLayerUpdater() {}
24 27
25 void ContentLayerUpdater::PaintContents(SkCanvas* canvas, 28 void ContentLayerUpdater::PaintContents(SkCanvas* canvas,
26 gfx::Rect content_rect, 29 gfx::Rect content_rect,
27 float contents_width_scale, 30 float contents_width_scale,
28 float contents_height_scale, 31 float contents_height_scale,
29 gfx::Rect* resulting_opaque_rect, 32 gfx::Rect* resulting_opaque_rect) {
30 RenderingStats* stats) {
31 TRACE_EVENT0("cc", "ContentLayerUpdater::PaintContents"); 33 TRACE_EVENT0("cc", "ContentLayerUpdater::PaintContents");
32 canvas->save(); 34 canvas->save();
33 canvas->translate(SkFloatToScalar(-content_rect.x()), 35 canvas->translate(SkFloatToScalar(-content_rect.x()),
34 SkFloatToScalar(-content_rect.y())); 36 SkFloatToScalar(-content_rect.y()));
35 37
36 gfx::Rect layer_rect = content_rect; 38 gfx::Rect layer_rect = content_rect;
37 39
38 if (contents_width_scale != 1.f || contents_height_scale != 1.f) { 40 if (contents_width_scale != 1.f || contents_height_scale != 1.f) {
39 canvas->scale(SkFloatToScalar(contents_width_scale), 41 canvas->scale(SkFloatToScalar(contents_width_scale),
40 SkFloatToScalar(contents_height_scale)); 42 SkFloatToScalar(contents_height_scale));
41 43
42 gfx::RectF rect = gfx::ScaleRect( 44 gfx::RectF rect = gfx::ScaleRect(
43 content_rect, 1.f / contents_width_scale, 1.f / contents_height_scale); 45 content_rect, 1.f / contents_width_scale, 1.f / contents_height_scale);
44 layer_rect = gfx::ToEnclosingRect(rect); 46 layer_rect = gfx::ToEnclosingRect(rect);
45 } 47 }
46 48
47 SkPaint paint; 49 SkPaint paint;
48 paint.setAntiAlias(false); 50 paint.setAntiAlias(false);
49 paint.setXfermodeMode(SkXfermode::kClear_Mode); 51 paint.setXfermodeMode(SkXfermode::kClear_Mode);
50 SkRect layer_sk_rect = SkRect::MakeXYWH( 52 SkRect layer_sk_rect = SkRect::MakeXYWH(
51 layer_rect.x(), layer_rect.y(), layer_rect.width(), layer_rect.height()); 53 layer_rect.x(), layer_rect.y(), layer_rect.width(), layer_rect.height());
52 canvas->drawRect(layer_sk_rect, paint); 54 canvas->drawRect(layer_sk_rect, paint);
53 canvas->clipRect(layer_sk_rect); 55 canvas->clipRect(layer_sk_rect);
54 56
55 gfx::RectF opaque_layer_rect; 57 gfx::RectF opaque_layer_rect;
56 base::TimeTicks paint_begin_time; 58
57 if (stats) 59 base::TimeTicks start_time =
58 paint_begin_time = base::TimeTicks::Now(); 60 rendering_stats_instrumentation_->StartRecording();
61
59 painter_->Paint(canvas, layer_rect, &opaque_layer_rect); 62 painter_->Paint(canvas, layer_rect, &opaque_layer_rect);
60 if (stats) { 63
61 stats->total_paint_time += base::TimeTicks::Now() - paint_begin_time; 64 base::TimeDelta duration =
62 stats->total_pixels_painted += content_rect.width() * content_rect.height(); 65 rendering_stats_instrumentation_->EndRecording(start_time);
63 } 66 rendering_stats_instrumentation_->AddPaint(
67 duration,
68 content_rect.width() * content_rect.height());
69
64 canvas->restore(); 70 canvas->restore();
65 71
66 gfx::RectF opaque_content_rect = gfx::ScaleRect( 72 gfx::RectF opaque_content_rect = gfx::ScaleRect(
67 opaque_layer_rect, contents_width_scale, contents_height_scale); 73 opaque_layer_rect, contents_width_scale, contents_height_scale);
68 *resulting_opaque_rect = gfx::ToEnclosedRect(opaque_content_rect); 74 *resulting_opaque_rect = gfx::ToEnclosedRect(opaque_content_rect);
69 75
70 content_rect_ = content_rect; 76 content_rect_ = content_rect;
71 } 77 }
72 78
73 } // namespace cc 79 } // namespace cc
OLDNEW
« no previous file with comments | « cc/resources/content_layer_updater.h ('k') | cc/resources/image_layer_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698