OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CC_PLAYBACK_CLIP_PATH_DISPLAY_ITEM_H_ | |
6 #define CC_PLAYBACK_CLIP_PATH_DISPLAY_ITEM_H_ | |
7 | |
8 #include <stddef.h> | |
9 | |
10 #include "cc/base/cc_export.h" | |
11 #include "cc/playback/display_item.h" | |
12 #include "third_party/skia/include/core/SkPath.h" | |
13 | |
14 namespace cc { | |
15 | |
16 class CC_EXPORT ClipPathDisplayItem : public DisplayItem { | |
17 public: | |
18 ClipPathDisplayItem(const SkPath& path, bool antialias); | |
19 ~ClipPathDisplayItem() override; | |
20 | |
21 size_t ExternalMemoryUsage() const { | |
22 // The size of SkPath's external storage is not currently accounted for (and | |
23 // may well be shared anyway). | |
24 return 0; | |
25 } | |
26 int ApproximateOpCount() const { return 1; } | |
27 | |
28 const SkPath clip_path; | |
29 const bool antialias; | |
30 }; | |
31 | |
32 class CC_EXPORT EndClipPathDisplayItem : public DisplayItem { | |
33 public: | |
34 EndClipPathDisplayItem(); | |
35 ~EndClipPathDisplayItem() override; | |
36 | |
37 int ApproximateOpCount() const { return 0; } | |
38 }; | |
39 | |
40 } // namespace cc | |
41 | |
42 #endif // CC_PLAYBACK_CLIP_PATH_DISPLAY_ITEM_H_ | |
OLD | NEW |