diff options
Diffstat (limited to 'components/compositing/pipeline.rs')
-rw-r--r-- | components/compositing/pipeline.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/compositing/pipeline.rs b/components/compositing/pipeline.rs index 40b1a2baa6a..bb96e2a6518 100644 --- a/components/compositing/pipeline.rs +++ b/components/compositing/pipeline.rs @@ -58,6 +58,7 @@ pub struct Pipeline { /// animations cause composites to be continually scheduled. pub running_animations: bool, pub children: Vec<FrameId>, + pub is_private: bool, } /// The subset of the pipeline that is needed for layer composition. @@ -275,6 +276,7 @@ impl Pipeline { children: vec!(), size: size, running_animations: false, + is_private: false, } } |