diff options
author | ecoal95 <ecoal95@gmail.com> | 2015-04-21 09:16:48 +0200 |
---|---|---|
committer | ecoal95 <ecoal95@gmail.com> | 2015-04-27 04:16:47 +0200 |
commit | 79a5dae1702916c724e7c9e08ead44a1b90cdedb (patch) | |
tree | 34216d0c75ff570ffbdf2d2699391e286a9e9225 /components/canvas/lib.rs | |
parent | ea00e949a45ca2e8842882b1b8a6ad7970890c00 (diff) | |
download | servo-79a5dae1702916c724e7c9e08ead44a1b90cdedb.tar.gz servo-79a5dae1702916c724e7c9e08ead44a1b90cdedb.zip |
WebGL context hardware acceleration + error detection
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r-- | components/canvas/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs index 5feab435394..17a5bcd0197 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -5,6 +5,7 @@ #![feature(collections)] #![feature(core)] #![feature(std_misc)] +#![feature(rustc_private)] extern crate azure; extern crate cssparser; @@ -12,9 +13,12 @@ extern crate geom; extern crate gfx; extern crate util; extern crate gleam; -extern crate msg; +extern crate offscreen_gl_context; extern crate glutin; +#[macro_use] +extern crate log; + pub mod canvas_paint_task; pub mod webgl_paint_task; pub mod canvas_msg; |