diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-08-27 16:29:57 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-09-29 09:47:28 -0700 |
commit | c72d0c2ed04f6c5f9fa22a3f576e1df5878f941d (patch) | |
tree | bff0f539155a1850bfc919a08cbaa4fc74725e1d /components/compositing/pipeline.rs | |
parent | ed0d70e2347648f7a0e7166fed8fb42b99b99fbc (diff) | |
download | servo-c72d0c2ed04f6c5f9fa22a3f576e1df5878f941d.tar.gz servo-c72d0c2ed04f6c5f9fa22a3f576e1df5878f941d.zip |
layout: Make the compositor rather than layout determine the position of
each iframe.
The old code that attempted to do this during layout wasn't able to work
for multiple reasons: it couldn't know where the iframe was going to be
on the page (because of nested iframes), and at the time it was building
the display list for a fragment it couldn't know where that fragment was
going to be in page coordinates.
This patch rewrites that code so that both the sizes and positions of
iframes are determined by the compositor. Layout layerizes all iframes
and marks the iframe layers with the appropriate pipeline and subpage
IDs so that the compositor can place them correctly. This approach is
similar in spirit to Gecko's `RefLayer` infrastructure. The logic that
determines when it is time to take the screenshot for reftests has been
significantly revamped to deal with this change in delegation of
responsibility.
Additionally, this code removes the infrastructure that sends layout
data back to the layout task to be destroyed, since it is now all
thread-safe and can be destroyed on the script task.
The failing tests now fail because of a pre-existing bug related to
intrinsic heights and borders on inline replaced elements. They happened
to pass before because we never rendered the iframes at all, which meant
they never had a chance to draw the red border the tests expect to not
render!
Closes #7377.
Diffstat (limited to 'components/compositing/pipeline.rs')
-rw-r--r-- | components/compositing/pipeline.rs | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/components/compositing/pipeline.rs b/components/compositing/pipeline.rs index 73cabc1d35e..59870d23ab8 100644 --- a/components/compositing/pipeline.rs +++ b/components/compositing/pipeline.rs @@ -4,9 +4,10 @@ use CompositorProxy; use compositor_task; +use compositor_task::Msg as CompositorMsg; use devtools_traits::{DevtoolsControlMsg, ScriptToDevtoolsControlMsg}; -use euclid::rect::{TypedRect}; use euclid::scale_factor::ScaleFactor; +use euclid::size::TypedSize2D; use gfx::font_cache_task::FontCacheTask; use gfx::paint_task::{ChromeToPaintMsg, LayoutToPaintMsg, PaintTask}; use ipc_channel::ipc::{self, IpcReceiver, IpcSender}; @@ -39,6 +40,8 @@ pub struct Pipeline { pub script_chan: Sender<ConstellationControlMsg>, /// A channel to layout, for performing reflows and shutdown. pub layout_chan: LayoutControlChan, + /// A channel to the compositor. + pub compositor_proxy: Box<CompositorProxy + 'static + Send>, pub chrome_to_paint_chan: Sender<ChromeToPaintMsg>, pub layout_shutdown_port: Receiver<()>, pub paint_shutdown_port: Receiver<()>, @@ -46,7 +49,7 @@ pub struct Pipeline { pub url: Url, /// The title of the most recently-loaded page. pub title: Option<String>, - pub rect: Option<TypedRect<PagePx, f32>>, + pub size: Option<TypedSize2D<PagePx, f32>>, /// Whether this pipeline is currently running animations. Pipelines that are running /// animations cause composites to be continually scheduled. pub running_animations: bool, @@ -88,7 +91,7 @@ pub struct InitialPipelineState { /// A channel to the memory profiler thread. pub mem_profiler_chan: profile_mem::ProfilerChan, /// Information about the initial window size. - pub window_rect: Option<TypedRect<PagePx, f32>>, + pub window_size: Option<TypedSize2D<PagePx, f32>>, /// Information about the device pixel ratio. pub device_pixel_ratio: ScaleFactor<ViewportPx, DevicePixel, f32>, /// A channel to the script thread, if applicable. If this is `Some`, @@ -116,10 +119,10 @@ impl Pipeline { parent_info: state.parent_info, }; - let window_size = state.window_rect.map(|rect| { + let window_size = state.window_size.map(|size| { WindowSizeData { - visible_viewport: rect.size, - initial_viewport: rect.size * ScaleFactor::new(1.0), + visible_viewport: size, + initial_viewport: size * ScaleFactor::new(1.0), device_pixel_ratio: state.device_pixel_ratio, } }); @@ -164,11 +167,12 @@ impl Pipeline { state.parent_info, script_chan.clone(), LayoutControlChan(pipeline_chan), + state.compositor_proxy.clone_compositor_proxy(), chrome_to_paint_chan.clone(), layout_shutdown_port, paint_shutdown_port, state.load_data.url.clone(), - state.window_rect); + state.window_size); let pipeline_content = PipelineContent { id: state.id, @@ -203,24 +207,26 @@ impl Pipeline { parent_info: Option<(PipelineId, SubpageId)>, script_chan: Sender<ConstellationControlMsg>, layout_chan: LayoutControlChan, + compositor_proxy: Box<CompositorProxy + 'static + Send>, chrome_to_paint_chan: Sender<ChromeToPaintMsg>, layout_shutdown_port: Receiver<()>, paint_shutdown_port: Receiver<()>, url: Url, - rect: Option<TypedRect<PagePx, f32>>) + size: Option<TypedSize2D<PagePx, f32>>) -> Pipeline { Pipeline { id: id, parent_info: parent_info, script_chan: script_chan, layout_chan: layout_chan, + compositor_proxy: compositor_proxy, chrome_to_paint_chan: chrome_to_paint_chan, layout_shutdown_port: layout_shutdown_port, paint_shutdown_port: paint_shutdown_port, url: url, title: None, children: vec!(), - rect: rect, + size: size, running_animations: false, } } @@ -239,13 +245,17 @@ impl Pipeline { // Script task handles shutting down layout, and layout handles shutting down the painter. // For now, if the script task has failed, we give up on clean shutdown. - if self.script_chan.send(ConstellationControlMsg::ExitPipeline(self.id, exit_type)).is_ok() { + if self.script_chan + .send(ConstellationControlMsg::ExitPipeline(self.id, exit_type)) + .is_ok() { // Wait until all slave tasks have terminated and run destructors // NOTE: We don't wait for script task as we don't always own it let _ = self.paint_shutdown_port.recv(); let _ = self.layout_shutdown_port.recv(); } + // The compositor wants to know when pipelines shut down too. + self.compositor_proxy.send(CompositorMsg::PipelineExited(self.id)) } pub fn freeze(&self) { |