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

Unified Diff: cc/layers/layer.h

Issue 2099743002: cc: Move background filters to the effect tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ' Created 4 years, 6 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 | « no previous file | cc/layers/layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer.h
diff --git a/cc/layers/layer.h b/cc/layers/layer.h
index c56ff2998d920c18605c3655be549ae6450d3cf4..4c3031947c5112c4a6321c3248af550dde216531 100644
--- a/cc/layers/layer.h
+++ b/cc/layers/layer.h
@@ -484,6 +484,9 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
void SetSubtreePropertyChanged();
bool subtree_property_changed() const { return subtree_property_changed_; }
+ void SetLayerPropertyChanged();
+ bool layer_property_changed() const { return layer_property_changed_; }
+
void DidBeginTracing();
int num_copy_requests_in_target_subtree();
@@ -646,6 +649,7 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
bool should_check_backface_visibility_ : 1;
bool force_render_surface_for_testing_ : 1;
bool subtree_property_changed_ : 1;
+ bool layer_property_changed_ : 1;
bool has_will_change_transform_hint_ : 1;
Region non_fast_scrollable_region_;
Region touch_event_handler_region_;
« no previous file with comments | « no previous file | cc/layers/layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698