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

Side by Side Diff: cc/trees/property_tree.h

Issue 1888073002: cc : Delete unused properties in effect node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « cc/trees/layer_tree_host_common.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_common.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698