diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-06-08 13:53:33 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-06-09 13:05:16 -0400 |
commit | 75efaa95f53dd0f110d02d5d4009bb491290af4d (patch) | |
tree | face9912a579fe911f9a43b11dbc7f0c7f71a5b2 /components/canvas_traits | |
parent | a6016b3a62804788ad23358e34fa5c1f50716f9a (diff) | |
download | servo-75efaa95f53dd0f110d02d5d4009bb491290af4d.tar.gz servo-75efaa95f53dd0f110d02d5d4009bb491290af4d.zip |
Proxy all WR interactions for layout/font/script/canvas threads to the compositor
thread. There is now a single RenderApi that is used, and all transactions are serialized
through the compositor.
Diffstat (limited to 'components/canvas_traits')
-rw-r--r-- | components/canvas_traits/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/canvas_traits/lib.rs b/components/canvas_traits/lib.rs index ec510e6281d..467eb432e0f 100644 --- a/components/canvas_traits/lib.rs +++ b/components/canvas_traits/lib.rs @@ -26,8 +26,6 @@ pub enum ConstellationCanvasMsg { Create { id_sender: Sender<CanvasId>, size: Size2D<u64>, - webrender_sender: webrender_api::RenderApiSender, - webrender_doc: webrender_api::DocumentId, antialias: bool, }, Exit, |