diff options
author | Diego Marcos <diego.marcos@gmail.com> | 2015-04-02 17:44:44 -0700 |
---|---|---|
committer | Diego Marcos <diego.marcos@gmail.com> | 2015-04-20 14:29:39 -0700 |
commit | c82485874d1fe1db89a2dac61c6d612a75b8e1a1 (patch) | |
tree | 516e56798ce3b99c5a108f441e1842801efc52ca /components/canvas/lib.rs | |
parent | b2585bee4d483f8a9ae93f3a017e97c0277421d1 (diff) | |
download | servo-c82485874d1fe1db89a2dac61c6d612a75b8e1a1.tar.gz servo-c82485874d1fe1db89a2dac61c6d612a75b8e1a1.zip |
Kicks off a WebGL implementation
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 2b5c51feec1..5feab435394 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -11,6 +11,10 @@ extern crate cssparser; extern crate geom; extern crate gfx; extern crate util; - +extern crate gleam; +extern crate msg; +extern crate glutin; pub mod canvas_paint_task; +pub mod webgl_paint_task; +pub mod canvas_msg; |