OLD | NEW |
---|---|
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 <string> | 7 #include <string> |
8 | 8 |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "base/trace_event/trace_event_argument.h" | 10 #include "base/trace_event/trace_event_argument.h" |
11 #include "cc/debug/picture_debug_util.h" | 11 #include "cc/debug/picture_debug_util.h" |
12 #include "third_party/skia/include/core/SkCanvas.h" | 12 #include "third_party/skia/include/core/SkCanvas.h" |
13 #include "third_party/skia/include/core/SkDrawPictureCallback.h" | 13 #include "third_party/skia/include/core/SkDrawPictureCallback.h" |
14 #include "third_party/skia/include/core/SkMatrix.h" | 14 #include "third_party/skia/include/core/SkMatrix.h" |
15 #include "third_party/skia/include/core/SkPicture.h" | 15 #include "third_party/skia/include/core/SkPicture.h" |
16 #include "third_party/skia/include/utils/SkPictureUtils.h" | 16 #include "third_party/skia/include/utils/SkPictureUtils.h" |
17 | 17 |
18 namespace cc { | 18 namespace cc { |
19 | 19 |
20 DrawingDisplayItem::DrawingDisplayItem(skia::RefPtr<SkPicture> picture, | 20 DrawingDisplayItem::DrawingDisplayItem(skia::RefPtr<SkPicture> picture) |
21 gfx::PointF location) | 21 : picture_(picture) { |
22 : picture_(picture), location_(location) { | |
23 } | 22 } |
24 | 23 |
25 DrawingDisplayItem::~DrawingDisplayItem() { | 24 DrawingDisplayItem::~DrawingDisplayItem() { |
26 } | 25 } |
27 | 26 |
28 void DrawingDisplayItem::Raster(SkCanvas* canvas, | 27 void DrawingDisplayItem::Raster(SkCanvas* canvas, |
29 SkDrawPictureCallback* callback) const { | 28 SkDrawPictureCallback* callback) const { |
30 canvas->save(); | 29 canvas->save(); |
31 canvas->translate(location_.x(), location_.y()); | |
32 if (callback) | 30 if (callback) |
33 picture_->playback(canvas, callback); | 31 picture_->playback(canvas, callback); |
34 else | 32 else |
35 canvas->drawPicture(picture_.get()); | 33 canvas->drawPicture(picture_.get()); |
36 canvas->restore(); | 34 canvas->restore(); |
37 } | 35 } |
38 | 36 |
39 void DrawingDisplayItem::RasterForTracing(SkCanvas* canvas) const { | 37 void DrawingDisplayItem::RasterForTracing(SkCanvas* canvas) const { |
40 canvas->save(); | 38 canvas->save(); |
41 canvas->translate(location_.x(), location_.y()); | |
42 // The picture debugger in about:tracing doesn't drill down into |drawPicture| | 39 // The picture debugger in about:tracing doesn't drill down into |drawPicture| |
43 // operations. Calling |playback()| rather than |drawPicture()| causes the | 40 // operations. Calling |playback()| rather than |drawPicture()| causes the |
44 // skia operations in |picture_| to appear individually in the picture | 41 // skia operations in |picture_| to appear individually in the picture |
45 // produced for tracing rather than being hidden inside a drawPicture | 42 // produced for tracing rather than being hidden inside a drawPicture |
46 // operation. | 43 // operation. |
47 picture_->playback(canvas); | 44 picture_->playback(canvas); |
48 canvas->restore(); | 45 canvas->restore(); |
49 } | 46 } |
50 | 47 |
51 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const { | 48 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const { |
52 return picture_->suitableForGpuRasterization(NULL); | 49 return picture_->suitableForGpuRasterization(NULL); |
53 } | 50 } |
54 | 51 |
55 int DrawingDisplayItem::ApproximateOpCount() const { | 52 int DrawingDisplayItem::ApproximateOpCount() const { |
56 return picture_->approximateOpCount() + sizeof(gfx::PointF); | 53 return picture_->approximateOpCount(); |
57 } | 54 } |
58 | 55 |
59 size_t DrawingDisplayItem::PictureMemoryUsage() const { | 56 size_t DrawingDisplayItem::PictureMemoryUsage() const { |
60 DCHECK(picture_); | 57 DCHECK(picture_); |
61 return SkPictureUtils::ApproximateBytesUsed(picture_.get()); | 58 return SkPictureUtils::ApproximateBytesUsed(picture_.get()); |
62 } | 59 } |
63 | 60 |
64 void DrawingDisplayItem::AsValueInto( | 61 void DrawingDisplayItem::AsValueInto( |
65 base::trace_event::TracedValue* array) const { | 62 base::trace_event::TracedValue* array) const { |
66 array->BeginDictionary(); | 63 array->BeginDictionary(); |
67 array->SetString("name", "DrawingDisplayItem"); | 64 array->SetString("name", "DrawingDisplayItem"); |
68 array->SetString("location", | 65 array->SetString( |
69 base::StringPrintf("[%f,%f]", picture_->cullRect().x(), | 66 "cullRect", |
70 picture_->cullRect().y())); | 67 base::StringPrintf("[%f,%f,%f,%f]", picture_->cullRect().x(), |
danakj
2015/10/30 22:11:31
This appears to break tracing, I get a js error ab
| |
68 picture_->cullRect().y(), picture_->cullRect().width(), | |
69 picture_->cullRect().height())); | |
71 std::string b64_picture; | 70 std::string b64_picture; |
72 PictureDebugUtil::SerializeAsBase64(picture_.get(), &b64_picture); | 71 PictureDebugUtil::SerializeAsBase64(picture_.get(), &b64_picture); |
73 array->SetString("skp64", b64_picture); | 72 array->SetString("skp64", b64_picture); |
74 array->EndDictionary(); | 73 array->EndDictionary(); |
75 } | 74 } |
76 | 75 |
77 } // namespace cc | 76 } // namespace cc |
OLD | NEW |