aboutsummaryrefslogtreecommitdiffstats
path: root/components/webvr/lib.rs
diff options
context:
space:
mode:
authorImanol Fernandez <mortimergoro@gmail.com>2017-08-15 16:05:22 +0200
committerImanol Fernandez <mortimergoro@gmail.com>2017-08-15 22:14:32 +0200
commit703962fe61d673536eb982b45795ae13748f0f6a (patch)
treec85f3cb5d55babab03d56dac8b0d10d588b0a0f9 /components/webvr/lib.rs
parente9cbbc58cc9655a15bc603effabbd4a4ff62b454 (diff)
downloadservo-703962fe61d673536eb982b45795ae13748f0f6a.tar.gz
servo-703962fe61d673536eb982b45795ae13748f0f6a.zip
Improve WebGL architecture.
Diffstat (limited to 'components/webvr/lib.rs')
-rw-r--r--components/webvr/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/webvr/lib.rs b/components/webvr/lib.rs
index 62f3e992fdc..0ad9722b21e 100644
--- a/components/webvr/lib.rs
+++ b/components/webvr/lib.rs
@@ -4,13 +4,14 @@
#![deny(unsafe_code)]
+extern crate canvas_traits;
+extern crate euclid;
extern crate ipc_channel;
#[macro_use]
extern crate log;
extern crate msg;
extern crate script_traits;
extern crate servo_config;
-extern crate webrender_api;
extern crate webvr_traits;
mod webvr_thread;