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 : picture_(picture) { | 21 : picture_(picture) { |
22 } | 22 } |
23 | 23 |
24 DrawingDisplayItem::~DrawingDisplayItem() { | 24 DrawingDisplayItem::~DrawingDisplayItem() { |
25 } | 25 } |
26 | 26 |
27 void DrawingDisplayItem::Raster(SkCanvas* canvas, | 27 void DrawingDisplayItem::Raster(SkCanvas* canvas, |
28 SkDrawPictureCallback* callback) const { | 28 SkDrawPictureCallback* callback) const { |
29 canvas->save(); | |
danakj
2015/04/28 21:46:41
could you say this in a comment here?
jbroman
2015/04/28 21:48:16
Done. Was debating whether I should.
| |
30 if (callback) | 29 if (callback) |
31 picture_->playback(canvas, callback); | 30 picture_->playback(canvas, callback); |
32 else | 31 else |
33 canvas->drawPicture(picture_.get()); | 32 canvas->drawPicture(picture_.get()); |
ajuma
2015/04/28 21:48:50
Does drawPicture also guarantee save/restore?
jbroman
2015/04/28 21:55:33
Yes.
It always dispatches either to SkRecordDraw,
| |
34 canvas->restore(); | |
35 } | 33 } |
36 | 34 |
37 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const { | 35 bool DrawingDisplayItem::IsSuitableForGpuRasterization() const { |
38 return picture_->suitableForGpuRasterization(NULL); | 36 return picture_->suitableForGpuRasterization(NULL); |
39 } | 37 } |
40 | 38 |
41 int DrawingDisplayItem::ApproximateOpCount() const { | 39 int DrawingDisplayItem::ApproximateOpCount() const { |
42 return picture_->approximateOpCount(); | 40 return picture_->approximateOpCount(); |
43 } | 41 } |
44 | 42 |
(...skipping 11 matching lines...) Expand all Loading... | |
56 base::StringPrintf("[%f,%f,%f,%f]", picture_->cullRect().x(), | 54 base::StringPrintf("[%f,%f,%f,%f]", picture_->cullRect().x(), |
57 picture_->cullRect().y(), picture_->cullRect().width(), | 55 picture_->cullRect().y(), picture_->cullRect().width(), |
58 picture_->cullRect().height())); | 56 picture_->cullRect().height())); |
59 std::string b64_picture; | 57 std::string b64_picture; |
60 PictureDebugUtil::SerializeAsBase64(picture_.get(), &b64_picture); | 58 PictureDebugUtil::SerializeAsBase64(picture_.get(), &b64_picture); |
61 array->SetString("skp64", b64_picture); | 59 array->SetString("skp64", b64_picture); |
62 array->EndDictionary(); | 60 array->EndDictionary(); |
63 } | 61 } |
64 | 62 |
65 } // namespace cc | 63 } // namespace cc |
OLD | NEW |