| 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_TREES_PROPERTY_TREE_H_ | 5 #ifndef CC_TREES_PROPERTY_TREE_H_ |
| 6 #define CC_TREES_PROPERTY_TREE_H_ | 6 #define CC_TREES_PROPERTY_TREE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <unordered_map> | 10 #include <unordered_map> |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 EffectNodeData(); | 260 EffectNodeData(); |
| 261 EffectNodeData(const EffectNodeData& other); | 261 EffectNodeData(const EffectNodeData& other); |
| 262 | 262 |
| 263 float opacity; | 263 float opacity; |
| 264 float screen_space_opacity; | 264 float screen_space_opacity; |
| 265 | 265 |
| 266 bool has_render_surface; | 266 bool has_render_surface; |
| 267 RenderSurfaceImpl* render_surface; | 267 RenderSurfaceImpl* render_surface; |
| 268 bool has_copy_request; | 268 bool has_copy_request; |
| 269 bool has_background_filters; | 269 bool has_background_filters; |
| 270 bool node_or_ancestor_has_background_filters; | |
| 271 bool to_screen_opacity_is_animated; | |
| 272 bool hidden_by_backface_visibility; | 270 bool hidden_by_backface_visibility; |
| 273 bool double_sided; | 271 bool double_sided; |
| 274 bool is_drawn; | 272 bool is_drawn; |
| 275 bool has_animated_opacity; | 273 bool has_animated_opacity; |
| 276 // We need to track changes to effects on the compositor to compute damage | 274 // We need to track changes to effects on the compositor to compute damage |
| 277 // rect. | 275 // rect. |
| 278 bool effect_changed; | 276 bool effect_changed; |
| 279 int num_copy_requests_in_subtree; | 277 int num_copy_requests_in_subtree; |
| 280 int transform_id; | 278 int transform_id; |
| 281 int clip_id; | 279 int clip_id; |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 | 683 |
| 686 private: | 684 private: |
| 687 gfx::Vector2dF inner_viewport_container_bounds_delta_; | 685 gfx::Vector2dF inner_viewport_container_bounds_delta_; |
| 688 gfx::Vector2dF outer_viewport_container_bounds_delta_; | 686 gfx::Vector2dF outer_viewport_container_bounds_delta_; |
| 689 gfx::Vector2dF inner_viewport_scroll_bounds_delta_; | 687 gfx::Vector2dF inner_viewport_scroll_bounds_delta_; |
| 690 }; | 688 }; |
| 691 | 689 |
| 692 } // namespace cc | 690 } // namespace cc |
| 693 | 691 |
| 694 #endif // CC_TREES_PROPERTY_TREE_H_ | 692 #endif // CC_TREES_PROPERTY_TREE_H_ |
| OLD | NEW |