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

Unified Diff: cc/trees/property_tree.h

Issue 1811423002: SubtreeShouldBeSkipped uses information from property trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/layer_tree_host_common_unittest.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/property_tree.h
diff --git a/cc/trees/property_tree.h b/cc/trees/property_tree.h
index 1993976a2d61fc01f439ca30323e04d3bb7d865a..e441ed84f700dd0132a4574f45a21d7d33f84040 100644
--- a/cc/trees/property_tree.h
+++ b/cc/trees/property_tree.h
@@ -263,6 +263,10 @@ struct CC_EXPORT EffectNodeData {
bool has_render_surface;
bool has_copy_request;
bool has_background_filters;
+ bool node_or_ancestor_has_background_filters;
+ bool to_screen_opacity_is_animated;
+ bool hidden_by_backface_visibility;
+ bool double_sided;
bool is_drawn;
bool has_animated_opacity;
// We need to track changes to effects on the compositor to compute damage
@@ -553,6 +557,7 @@ class CC_EXPORT EffectTree final : public PropertyTree<EffectNode> {
private:
void UpdateOpacities(EffectNode* node, EffectNode* parent_node);
void UpdateIsDrawn(EffectNode* node, EffectNode* parent_node);
+ void UpdateBackfaceVisibility(EffectNode* node, EffectNode* parent_node);
};
class CC_EXPORT ScrollTree final : public PropertyTree<ScrollNode> {
« no previous file with comments | « cc/trees/layer_tree_host_common_unittest.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698