diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-11-06 16:10:36 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-11-06 16:13:55 -0500 |
commit | 7c365b0324b2723d5df2437e59555bfc1835a68f (patch) | |
tree | ab4ac6bb4ca966885f512041079567080d722f2b /components/constellation/pipeline.rs | |
parent | fd260f78c80a070727ba88d7b5f7cc40eb7efb5a (diff) | |
download | servo-7c365b0324b2723d5df2437e59555bfc1835a68f.tar.gz servo-7c365b0324b2723d5df2437e59555bfc1835a68f.zip |
Centralize definitions of window sizes and DPI in compositor/constellation during startup.
Diffstat (limited to 'components/constellation/pipeline.rs')
-rw-r--r-- | components/constellation/pipeline.rs | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index 2579343f3fe..3ac5ded15ed 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -12,7 +12,6 @@ use compositing::CompositorProxy; use crossbeam_channel::{unbounded, Sender}; use devtools_traits::{DevtoolsControlMsg, ScriptToDevtoolsControlMsg}; use embedder_traits::EventLoopWaker; -use euclid::{Scale, Size2D}; use gfx::font_cache_thread::FontCacheThread; use ipc_channel::ipc::{self, IpcReceiver, IpcSender}; use ipc_channel::router::ROUTER; @@ -47,8 +46,6 @@ use std::process; use std::rc::Rc; use std::sync::atomic::AtomicBool; use std::sync::Arc; -use style_traits::CSSPixel; -use style_traits::DevicePixel; use webvr_traits::WebVRMsg; /// A `Pipeline` is the constellation's view of a `Document`. Each pipeline has an @@ -165,10 +162,7 @@ pub struct InitialPipelineState { pub mem_profiler_chan: profile_mem::ProfilerChan, /// Information about the initial window size. - pub window_size: Size2D<f32, CSSPixel>, - - /// Information about the device pixel ratio. - pub device_pixel_ratio: Scale<f32, CSSPixel, DevicePixel>, + pub window_size: WindowSizeData, /// The ID of the pipeline namespace for this script thread. pub pipeline_namespace_id: PipelineNamespaceId, @@ -205,10 +199,6 @@ pub struct InitialPipelineState { /// Mechanism to force the compositor to process events. pub event_loop_waker: Option<Box<dyn EventLoopWaker>>, - - /// The ratio of device pixels per px at the default scale. If unspecified, will use the - /// platform default setting. - pub device_pixels_per_px: Option<f32>, } pub struct NewPipeline { @@ -228,11 +218,6 @@ impl Pipeline { // probably requires a general low-memory strategy. let (pipeline_chan, pipeline_port) = ipc::channel().expect("Pipeline main chan"); - let window_size = WindowSizeData { - initial_viewport: state.window_size, - device_pixel_ratio: state.device_pixel_ratio, - }; - let (script_chan, sampler_chan) = match state.event_loop { Some(script_chan) => { let new_layout_info = NewLayoutInfo { @@ -242,7 +227,7 @@ impl Pipeline { top_level_browsing_context_id: state.top_level_browsing_context_id, opener: state.opener, load_data: state.load_data.clone(), - window_size: window_size, + window_size: state.window_size, pipeline_port: pipeline_port, }; @@ -301,7 +286,7 @@ impl Pipeline { resource_threads: state.resource_threads, time_profiler_chan: state.time_profiler_chan, mem_profiler_chan: state.mem_profiler_chan, - window_size: window_size, + window_size: state.window_size, layout_to_constellation_chan: state.layout_to_constellation_chan, script_chan: script_chan.clone(), load_data: state.load_data.clone(), @@ -316,7 +301,6 @@ impl Pipeline { webvr_chan: state.webvr_chan, webxr_registry: state.webxr_registry, player_context: state.player_context, - device_pixels_per_px: state.device_pixels_per_px, }; // Spawn the child process. @@ -523,7 +507,6 @@ pub struct UnprivilegedPipelineContent { webvr_chan: Option<IpcSender<WebVRMsg>>, webxr_registry: webxr_api::Registry, player_context: WindowGLContext, - device_pixels_per_px: Option<f32>, } impl UnprivilegedPipelineContent { @@ -614,8 +597,7 @@ impl UnprivilegedPipelineContent { paint_time_metrics, layout_thread_busy_flag.clone(), self.opts.load_webfonts_synchronously, - self.opts.initial_window_size, - self.device_pixels_per_px, + self.window_size, self.opts.dump_display_list, self.opts.dump_display_list_json, self.opts.dump_style_tree, |