OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_TREES_EFFECT_NODE_H_ | 5 #ifndef CC_TREES_EFFECT_NODE_H_ |
6 #define CC_TREES_EFFECT_NODE_H_ | 6 #define CC_TREES_EFFECT_NODE_H_ |
7 | 7 |
8 #include "cc/base/filter_operations.h" | 8 #include "cc/base/filter_operations.h" |
9 #include "cc/cc_export.h" | 9 #include "cc/cc_export.h" |
10 #include "third_party/skia/include/core/SkBlendMode.h" | 10 #include "third_party/skia/include/core/SkBlendMode.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 bool has_potential_filter_animation; | 54 bool has_potential_filter_animation; |
55 bool has_potential_opacity_animation; | 55 bool has_potential_opacity_animation; |
56 bool is_currently_animating_filter; | 56 bool is_currently_animating_filter; |
57 bool is_currently_animating_opacity; | 57 bool is_currently_animating_opacity; |
58 // We need to track changes to effects on the compositor to compute damage | 58 // We need to track changes to effects on the compositor to compute damage |
59 // rect. | 59 // rect. |
60 bool effect_changed; | 60 bool effect_changed; |
61 bool subtree_has_copy_request; | 61 bool subtree_has_copy_request; |
62 int transform_id; | 62 int transform_id; |
63 int clip_id; | 63 int clip_id; |
64 // Effect node id of which this effect contributes to. | 64 |
| 65 // This is the id of the ancestor effect node that induces a |
| 66 // RenderSurfaceImpl. |
65 int target_id; | 67 int target_id; |
66 int mask_layer_id; | 68 int mask_layer_id; |
67 int closest_ancestor_with_copy_request_id; | 69 int closest_ancestor_with_copy_request_id; |
68 | 70 |
69 bool operator==(const EffectNode& other) const; | 71 bool operator==(const EffectNode& other) const; |
70 | 72 |
71 void AsValueInto(base::trace_event::TracedValue* value) const; | 73 void AsValueInto(base::trace_event::TracedValue* value) const; |
72 }; | 74 }; |
73 | 75 |
74 } // namespace cc | 76 } // namespace cc |
75 | 77 |
76 #endif // CC_TREES_EFFECT_NODE_H_ | 78 #endif // CC_TREES_EFFECT_NODE_H_ |
OLD | NEW |