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

Side by Side Diff: cc/playback/float_clip_display_item.h

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git merge origin/master Created 4 years, 6 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 #ifndef CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_ 5 #ifndef CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_
6 #define CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_ 6 #define CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "cc/base/cc_export.h" 14 #include "cc/base/cc_export.h"
15 #include "cc/playback/display_item.h" 15 #include "cc/playback/display_item.h"
16 #include "ui/gfx/geometry/rect_f.h" 16 #include "ui/gfx/geometry/rect_f.h"
17 17
18 class SkCanvas; 18 class SkCanvas;
19 19
20 namespace cc { 20 namespace cc {
21 class ImageSerializationProcessor;
22 21
23 class CC_EXPORT FloatClipDisplayItem : public DisplayItem { 22 class CC_EXPORT FloatClipDisplayItem : public DisplayItem {
24 public: 23 public:
25 explicit FloatClipDisplayItem(const gfx::RectF& clip_rect); 24 explicit FloatClipDisplayItem(const gfx::RectF& clip_rect);
26 explicit FloatClipDisplayItem(const proto::DisplayItem& proto); 25 explicit FloatClipDisplayItem(const proto::DisplayItem& proto);
27 ~FloatClipDisplayItem() override; 26 ~FloatClipDisplayItem() override;
28 27
29 void ToProtobuf(proto::DisplayItem* proto, 28 void ToProtobuf(proto::DisplayItem* proto) const override;
30 ImageSerializationProcessor* image_serialization_processor)
31 const override;
32 void Raster(SkCanvas* canvas, 29 void Raster(SkCanvas* canvas,
33 const gfx::Rect& canvas_target_playback_rect, 30 const gfx::Rect& canvas_target_playback_rect,
34 SkPicture::AbortCallback* callback) const override; 31 SkPicture::AbortCallback* callback) const override;
35 void AsValueInto(const gfx::Rect& visual_rect, 32 void AsValueInto(const gfx::Rect& visual_rect,
36 base::trace_event::TracedValue* array) const override; 33 base::trace_event::TracedValue* array) const override;
37 size_t ExternalMemoryUsage() const override; 34 size_t ExternalMemoryUsage() const override;
38 35
39 int ApproximateOpCount() const { return 1; } 36 int ApproximateOpCount() const { return 1; }
40 37
41 private: 38 private:
42 void SetNew(const gfx::RectF& clip_rect); 39 void SetNew(const gfx::RectF& clip_rect);
43 40
44 gfx::RectF clip_rect_; 41 gfx::RectF clip_rect_;
45 }; 42 };
46 43
47 class CC_EXPORT EndFloatClipDisplayItem : public DisplayItem { 44 class CC_EXPORT EndFloatClipDisplayItem : public DisplayItem {
48 public: 45 public:
49 EndFloatClipDisplayItem(); 46 EndFloatClipDisplayItem();
50 explicit EndFloatClipDisplayItem(const proto::DisplayItem& proto); 47 explicit EndFloatClipDisplayItem(const proto::DisplayItem& proto);
51 ~EndFloatClipDisplayItem() override; 48 ~EndFloatClipDisplayItem() override;
52 49
53 static std::unique_ptr<EndFloatClipDisplayItem> Create() { 50 static std::unique_ptr<EndFloatClipDisplayItem> Create() {
54 return base::WrapUnique(new EndFloatClipDisplayItem()); 51 return base::WrapUnique(new EndFloatClipDisplayItem());
55 } 52 }
56 53
57 void ToProtobuf(proto::DisplayItem* proto, 54 void ToProtobuf(proto::DisplayItem* proto) const override;
58 ImageSerializationProcessor* image_serialization_processor)
59 const override;
60 void Raster(SkCanvas* canvas, 55 void Raster(SkCanvas* canvas,
61 const gfx::Rect& canvas_target_playback_rect, 56 const gfx::Rect& canvas_target_playback_rect,
62 SkPicture::AbortCallback* callback) const override; 57 SkPicture::AbortCallback* callback) const override;
63 void AsValueInto(const gfx::Rect& visual_rect, 58 void AsValueInto(const gfx::Rect& visual_rect,
64 base::trace_event::TracedValue* array) const override; 59 base::trace_event::TracedValue* array) const override;
65 size_t ExternalMemoryUsage() const override; 60 size_t ExternalMemoryUsage() const override;
66 61
67 int ApproximateOpCount() const { return 0; } 62 int ApproximateOpCount() const { return 0; }
68 bool IsSuitableForGpuRasterization() const { return true; } 63 bool IsSuitableForGpuRasterization() const { return true; }
69 }; 64 };
70 65
71 } // namespace cc 66 } // namespace cc
72 67
73 #endif // CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_ 68 #endif // CC_PLAYBACK_FLOAT_CLIP_DISPLAY_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698