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

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

Issue 1864183002: cc: Main thread skip single layers instead of subtrees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the dependency problem 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
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 EffectNodeData(const EffectNodeData& other); 258 EffectNodeData(const EffectNodeData& other);
259 259
260 float opacity; 260 float opacity;
261 float screen_space_opacity; 261 float screen_space_opacity;
262 262
263 bool has_render_surface; 263 bool has_render_surface;
264 bool has_copy_request; 264 bool has_copy_request;
265 bool has_background_filters; 265 bool has_background_filters;
266 bool node_or_ancestor_has_background_filters; 266 bool node_or_ancestor_has_background_filters;
267 bool to_screen_opacity_is_animated; 267 bool to_screen_opacity_is_animated;
268 bool to_screen_opacity_can_animate_on_impl;
268 bool hidden_by_backface_visibility; 269 bool hidden_by_backface_visibility;
269 bool double_sided; 270 bool double_sided;
270 bool is_drawn; 271 bool is_drawn;
271 bool has_animated_opacity; 272 bool has_animated_opacity;
272 // We need to track changes to effects on the compositor to compute damage 273 // We need to track changes to effects on the compositor to compute damage
273 // rect. 274 // rect.
274 bool effect_changed; 275 bool effect_changed;
275 int num_copy_requests_in_subtree; 276 int num_copy_requests_in_subtree;
276 int transform_id; 277 int transform_id;
277 int clip_id; 278 int clip_id;
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 679
679 private: 680 private:
680 gfx::Vector2dF inner_viewport_container_bounds_delta_; 681 gfx::Vector2dF inner_viewport_container_bounds_delta_;
681 gfx::Vector2dF outer_viewport_container_bounds_delta_; 682 gfx::Vector2dF outer_viewport_container_bounds_delta_;
682 gfx::Vector2dF inner_viewport_scroll_bounds_delta_; 683 gfx::Vector2dF inner_viewport_scroll_bounds_delta_;
683 }; 684 };
684 685
685 } // namespace cc 686 } // namespace cc
686 687
687 #endif // CC_TREES_PROPERTY_TREE_H_ 688 #endif // CC_TREES_PROPERTY_TREE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698