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

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

Issue 816443003: cc: Include pictures in trace output for DisplayItemLists (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment 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
« no previous file with comments | « cc/resources/drawing_display_item.h ('k') | cc/resources/picture.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/drawing_display_item.h" 5 #include "cc/resources/drawing_display_item.h"
6 6
7 #include "third_party/skia/include/core/SkCanvas.h" 7 #include "third_party/skia/include/core/SkCanvas.h"
8 #include "third_party/skia/include/core/SkDrawPictureCallback.h" 8 #include "third_party/skia/include/core/SkDrawPictureCallback.h"
9 #include "third_party/skia/include/core/SkMatrix.h" 9 #include "third_party/skia/include/core/SkMatrix.h"
10 #include "third_party/skia/include/core/SkPicture.h" 10 #include "third_party/skia/include/core/SkPicture.h"
(...skipping 13 matching lines...) Expand all
24 SkDrawPictureCallback* callback) const { 24 SkDrawPictureCallback* callback) const {
25 canvas->save(); 25 canvas->save();
26 canvas->translate(location_.x(), location_.y()); 26 canvas->translate(location_.x(), location_.y());
27 if (callback) 27 if (callback)
28 picture_->playback(canvas, callback); 28 picture_->playback(canvas, callback);
29 else 29 else
30 canvas->drawPicture(picture_.get()); 30 canvas->drawPicture(picture_.get());
31 canvas->restore(); 31 canvas->restore();
32 } 32 }
33 33
34 void DrawingDisplayItem::RasterForTracing(SkCanvas* canvas) const {
35 canvas->save();
36 canvas->translate(location_.x(), location_.y());
37 // The picture debugger in about:tracing doesn't drill down into |drawPicture|
38 // operations. Calling |playback()| rather than |drawPicture()| causes the
39 // skia operations in |picture_| to appear individually in the picture
40 // produced for tracing rather than being hidden inside a drawPicture
41 // operation.
42 picture_->playback(canvas);
43 canvas->restore();
44 }
45
34 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const { 46 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const {
35 return picture_->suitableForGpuRasterization(NULL); 47 return picture_->suitableForGpuRasterization(NULL);
36 } 48 }
37 49
38 int DrawingDisplayItem::ApproximateOpCount() const { 50 int DrawingDisplayItem::ApproximateOpCount() const {
39 return picture_->approximateOpCount() + sizeof(gfx::PointF); 51 return picture_->approximateOpCount() + sizeof(gfx::PointF);
40 } 52 }
41 53
42 size_t DrawingDisplayItem::PictureMemoryUsage() const { 54 size_t DrawingDisplayItem::PictureMemoryUsage() const {
43 DCHECK(picture_); 55 DCHECK(picture_);
44 return SkPictureUtils::ApproximateBytesUsed(picture_.get()); 56 return SkPictureUtils::ApproximateBytesUsed(picture_.get());
45 } 57 }
46 58
47 } // namespace cc 59 } // namespace cc
OLDNEW
« no previous file with comments | « cc/resources/drawing_display_item.h ('k') | cc/resources/picture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698