diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-10-09 20:15:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 20:15:40 -0400 |
commit | 7a88a2e28ae20b9ce3dddaef1da25b7837088b2a (patch) | |
tree | f01b9ca8912cba20f89005ec8010041a8a073279 /components/script/lib.rs | |
parent | 68e55ead4299d6664b1462bef520cec856efbd8a (diff) | |
parent | c53db64e63f3268d90f45c00f36f94941796b104 (diff) | |
download | servo-7a88a2e28ae20b9ce3dddaef1da25b7837088b2a.tar.gz servo-7a88a2e28ae20b9ce3dddaef1da25b7837088b2a.zip |
Auto merge of #21877 - servo:webgl, r=jdm
Improve some byte-swap and premultiply operations
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21877)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index eda29279bae..20b6a59e72d 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -77,6 +77,7 @@ extern crate num_traits; extern crate offscreen_gl_context; extern crate parking_lot; extern crate phf; +extern crate pixels; #[macro_use] extern crate profile_traits; extern crate ref_filter_map; |