mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Remove pipeline_to_frame_map
This commit is contained in:
parent
a94d3ee744
commit
b8059558e3
2 changed files with 27 additions and 24 deletions
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue