diff options
author | Connor Brewster <brewsterc@my.caspercollege.edu> | 2016-06-20 22:30:07 -0600 |
---|---|---|
committer | Connor Brewster <brewsterc@my.caspercollege.edu> | 2016-06-21 07:18:11 -0600 |
commit | b8059558e3bd068e17d834e9a43717e6a49f542c (patch) | |
tree | 4686ef762af7a5abc7dff25d5282ad82e9a8bb04 /components/constellation/pipeline.rs | |
parent | a94d3ee744fd0ff87bfe0548ba96927e64ce4b54 (diff) | |
download | servo-b8059558e3bd068e17d834e9a43717e6a49f542c.tar.gz servo-b8059558e3bd068e17d834e9a43717e6a49f542c.zip |
Remove pipeline_to_frame_map
Diffstat (limited to 'components/constellation/pipeline.rs')
-rw-r--r-- | components/constellation/pipeline.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index 23509e51d20..a0dc0391065 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -69,6 +69,9 @@ pub struct Pipeline { /// Whether this pipeline should be treated as visible for the purposes of scheduling and /// resource management. pub visible: bool, + /// Frame that contains this Pipeline. Can be `None` if the pipeline is not apart of the + /// frame tree. + pub frame: Option<FrameId>, } /// Initial setup data needed to construct a pipeline. @@ -292,6 +295,7 @@ impl Pipeline { running_animations: false, visible: visible, is_private: is_private, + frame: None, } } |