diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-07-25 01:50:31 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-07-25 01:50:31 -0600 |
commit | 1764267379a00b96a1df89f3917299a0c6fd325c (patch) | |
tree | 15641e7ed77b46ab61bab772fa3c63b7e8e8d619 /components/gfx/paint_task.rs | |
parent | 886c08c393f51499490702eaf97fc770273a2600 (diff) | |
parent | bb99b2f3c8813919c476930c709b73d3cfbc8c83 (diff) | |
download | servo-1764267379a00b96a1df89f3917299a0c6fd325c.tar.gz servo-1764267379a00b96a1df89f3917299a0c6fd325c.zip |
Auto merge of #6616 - pcwalton:canvas-webgl-ipc, r=jdm
script: Make most of 2D canvas and WebGL run over IPC.
To actually make the multiprocess communication work, we'll need to
reroute the task creation to the pipeline or the compositor. But this
works as a first step.
r? @jdm
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6616)
<!-- Reviewable:end -->
Diffstat (limited to 'components/gfx/paint_task.rs')
-rw-r--r-- | components/gfx/paint_task.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/gfx/paint_task.rs b/components/gfx/paint_task.rs index e3730ff894a..69251d0b0ae 100644 --- a/components/gfx/paint_task.rs +++ b/components/gfx/paint_task.rs @@ -11,15 +11,15 @@ use paint_context::PaintContext; use azure::azure_hl::{SurfaceFormat, Color, DrawTarget, BackendType}; use azure::AzFloat; +use canvas_traits::CanvasMsg; use euclid::Matrix4; use euclid::point::Point2D; use euclid::rect::Rect; use euclid::size::Size2D; -use ipc_channel::ipc; +use ipc_channel::ipc::{self, IpcSender}; use ipc_channel::router::ROUTER; use layers::platform::surface::{NativeDisplay, NativeSurface}; use layers::layers::{BufferRequest, LayerBuffer, LayerBufferSet}; -use canvas_traits::CanvasMsg; use msg::compositor_msg::{Epoch, FrameTreeId, LayerId, LayerKind}; use msg::compositor_msg::{LayerProperties, PaintListener, ScrollPolicy}; use msg::constellation_msg::Msg as ConstellationMsg; @@ -30,7 +30,7 @@ use profile_traits::time::{self, profile}; use rand::{self, Rng}; use std::borrow::ToOwned; use std::mem as std_mem; -use std::sync::{Arc, Mutex}; +use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender, channel}; use std::collections::HashMap; use url::Url; @@ -72,7 +72,7 @@ pub struct PaintRequest { pub enum Msg { PaintInit(Epoch, Arc<StackingContext>), - CanvasLayer(LayerId, Arc<Mutex<Sender<CanvasMsg>>>), + CanvasLayer(LayerId, IpcSender<CanvasMsg>), Paint(Vec<PaintRequest>, FrameTreeId), PaintPermissionGranted, PaintPermissionRevoked, @@ -122,7 +122,7 @@ pub struct PaintTask<C> { worker_threads: Vec<WorkerThreadProxy>, /// A map to track the canvas specific layers - canvas_map: HashMap<LayerId, Arc<Mutex<Sender<CanvasMsg>>>>, + canvas_map: HashMap<LayerId, IpcSender<CanvasMsg>>, } // If we implement this as a function, we get borrowck errors from borrowing |