| 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 #ifndef CC_PLAYBACK_CLIP_DISPLAY_ITEM_H_ | 5 #ifndef CC_PLAYBACK_CLIP_DISPLAY_ITEM_H_ |
| 6 #define CC_PLAYBACK_CLIP_DISPLAY_ITEM_H_ | 6 #define CC_PLAYBACK_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 "cc/base/cc_export.h" | 13 #include "cc/base/cc_export.h" |
| 14 #include "cc/playback/display_item.h" | 14 #include "cc/playback/display_item.h" |
| 15 #include "third_party/skia/include/core/SkRRect.h" | 15 #include "third_party/skia/include/core/SkRRect.h" |
| 16 #include "ui/gfx/geometry/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
| 17 | 17 |
| 18 class SkCanvas; | 18 class SkCanvas; |
| 19 | 19 |
| 20 namespace cc { | 20 namespace cc { |
| 21 class ImageSerializationProcessor; | 21 class ImageSerializationProcessor; |
| 22 | 22 |
| 23 class CC_EXPORT ClipDisplayItem : public DisplayItem { | 23 class CC_EXPORT ClipDisplayItem : public DisplayItem { |
| 24 public: | 24 public: |
| 25 ClipDisplayItem(const gfx::Rect& clip_rect, | 25 ClipDisplayItem(const gfx::Rect& clip_rect, |
| 26 const std::vector<SkRRect>& rounded_clip_rects); | 26 const std::vector<SkRRect>& rounded_clip_rects, |
| 27 bool antialias); |
| 27 explicit ClipDisplayItem(const proto::DisplayItem& proto); | 28 explicit ClipDisplayItem(const proto::DisplayItem& proto); |
| 28 ~ClipDisplayItem() override; | 29 ~ClipDisplayItem() override; |
| 29 | 30 |
| 30 void ToProtobuf(proto::DisplayItem* proto, | 31 void ToProtobuf(proto::DisplayItem* proto, |
| 31 ImageSerializationProcessor* image_serialization_processor) | 32 ImageSerializationProcessor* image_serialization_processor) |
| 32 const override; | 33 const override; |
| 33 void Raster(SkCanvas* canvas, | 34 void Raster(SkCanvas* canvas, |
| 34 const gfx::Rect& canvas_target_playback_rect, | 35 const gfx::Rect& canvas_target_playback_rect, |
| 35 SkPicture::AbortCallback* callback) const override; | 36 SkPicture::AbortCallback* callback) const override; |
| 36 void AsValueInto(const gfx::Rect& visual_rect, | 37 void AsValueInto(const gfx::Rect& visual_rect, |
| 37 base::trace_event::TracedValue* array) const override; | 38 base::trace_event::TracedValue* array) const override; |
| 38 size_t ExternalMemoryUsage() const override; | 39 size_t ExternalMemoryUsage() const override; |
| 39 | 40 |
| 40 int ApproximateOpCount() const { return 1; } | 41 int ApproximateOpCount() const { return 1; } |
| 41 | 42 |
| 42 private: | 43 private: |
| 43 void SetNew(const gfx::Rect& clip_rect, | 44 void SetNew(const gfx::Rect& clip_rect, |
| 44 const std::vector<SkRRect>& rounded_clip_rects); | 45 const std::vector<SkRRect>& rounded_clip_rects, |
| 46 bool antialias); |
| 45 | 47 |
| 46 gfx::Rect clip_rect_; | 48 gfx::Rect clip_rect_; |
| 47 std::vector<SkRRect> rounded_clip_rects_; | 49 std::vector<SkRRect> rounded_clip_rects_; |
| 50 bool antialias_; |
| 48 }; | 51 }; |
| 49 | 52 |
| 50 class CC_EXPORT EndClipDisplayItem : public DisplayItem { | 53 class CC_EXPORT EndClipDisplayItem : public DisplayItem { |
| 51 public: | 54 public: |
| 52 EndClipDisplayItem(); | 55 EndClipDisplayItem(); |
| 53 explicit EndClipDisplayItem(const proto::DisplayItem& proto); | 56 explicit EndClipDisplayItem(const proto::DisplayItem& proto); |
| 54 ~EndClipDisplayItem() override; | 57 ~EndClipDisplayItem() override; |
| 55 | 58 |
| 56 void ToProtobuf(proto::DisplayItem* proto, | 59 void ToProtobuf(proto::DisplayItem* proto, |
| 57 ImageSerializationProcessor* image_serialization_processor) | 60 ImageSerializationProcessor* image_serialization_processor) |
| 58 const override; | 61 const override; |
| 59 void Raster(SkCanvas* canvas, | 62 void Raster(SkCanvas* canvas, |
| 60 const gfx::Rect& canvas_target_playback_rect, | 63 const gfx::Rect& canvas_target_playback_rect, |
| 61 SkPicture::AbortCallback* callback) const override; | 64 SkPicture::AbortCallback* callback) const override; |
| 62 void AsValueInto(const gfx::Rect& visual_rect, | 65 void AsValueInto(const gfx::Rect& visual_rect, |
| 63 base::trace_event::TracedValue* array) const override; | 66 base::trace_event::TracedValue* array) const override; |
| 64 size_t ExternalMemoryUsage() const override; | 67 size_t ExternalMemoryUsage() const override; |
| 65 | 68 |
| 66 int ApproximateOpCount() const { return 0; } | 69 int ApproximateOpCount() const { return 0; } |
| 67 }; | 70 }; |
| 68 | 71 |
| 69 } // namespace cc | 72 } // namespace cc |
| 70 | 73 |
| 71 #endif // CC_PLAYBACK_CLIP_DISPLAY_ITEM_H_ | 74 #endif // CC_PLAYBACK_CLIP_DISPLAY_ITEM_H_ |
| OLD | NEW |