mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
move ConstellationMsg to compositing
This commit is contained in:
parent
b3ac17b82f
commit
8d4aeef08b
15 changed files with 133 additions and 122 deletions
|
@ -16,6 +16,7 @@ oculusvr = ['rust-webvr/oculusvr']
|
|||
|
||||
[dependencies]
|
||||
canvas_traits = {path = "../canvas_traits"}
|
||||
compositing = {path = "../compositing"}
|
||||
crossbeam-channel = "0.3"
|
||||
euclid = "0.20"
|
||||
ipc-channel = "0.12"
|
||||
|
@ -23,7 +24,6 @@ log = "0.4"
|
|||
msg = {path = "../msg"}
|
||||
rust-webvr = {version = "0.16", features = ["mock", "openvr", "vrexternal"]}
|
||||
rust-webvr-api = "0.16"
|
||||
script_traits = {path = "../script_traits"}
|
||||
servo_config = {path = "../config"}
|
||||
sparkle = "0.1"
|
||||
webvr_traits = {path = "../webvr_traits" }
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use canvas_traits::webgl;
|
||||
use compositing::ConstellationMsg;
|
||||
use crossbeam_channel::{unbounded, Receiver, Sender};
|
||||
use euclid::default::Size2D;
|
||||
use ipc_channel::ipc;
|
||||
use ipc_channel::ipc::{IpcReceiver, IpcSender};
|
||||
use msg::constellation_msg::PipelineId;
|
||||
use rust_webvr::VRServiceManager;
|
||||
use script_traits::ConstellationMsg;
|
||||
use servo_config::pref;
|
||||
use sparkle::gl::Gl;
|
||||
use std::collections::hash_map::Entry;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue