diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2018-10-06 00:40:48 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-10-06 01:11:55 +0200 |
commit | 784fbb2bc17d311fe3322cc48d2dca8a902161ca (patch) | |
tree | 2194d8d1bb0fbb7d7c50f3fbcc83b40bb28b3ea8 /components/canvas/lib.rs | |
parent | a2e3dd4e8636b7125140850dc4bc95433e801e77 (diff) | |
download | servo-784fbb2bc17d311fe3322cc48d2dca8a902161ca.tar.gz servo-784fbb2bc17d311fe3322cc48d2dca8a902161ca.zip |
Merge some byte swap/premultiply functions in their own crate
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r-- | components/canvas/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs index 8da9544de6e..554f598403c 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -15,6 +15,7 @@ extern crate ipc_channel; #[macro_use] extern crate log; extern crate num_traits; extern crate offscreen_gl_context; +extern crate pixels; extern crate serde_bytes; extern crate servo_config; extern crate webrender; |