diff options
author | Imanol Fernandez <mortimergoro@gmail.com> | 2017-08-21 23:23:03 +0200 |
---|---|---|
committer | Imanol Fernandez <mortimergoro@gmail.com> | 2017-08-24 22:18:34 +0200 |
commit | 0a64455c71886021f437671539cfe804e9d50ed6 (patch) | |
tree | 1f7bbebcbec556b35533da770c29fd614d484fdc /components/canvas/lib.rs | |
parent | 6eb46b1a3934c18d6147c1d9d31bf4d5bb051d7d (diff) | |
download | servo-0a64455c71886021f437671539cfe804e9d50ed6.tar.gz servo-0a64455c71886021f437671539cfe804e9d50ed6.zip |
Use FnvHashMap in WebGL implementation.
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 b9f0823a07d..e26d8c2b582 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -9,6 +9,7 @@ extern crate canvas_traits; extern crate compositing; extern crate cssparser; extern crate euclid; +extern crate fnv; extern crate gleam; extern crate ipc_channel; #[macro_use] extern crate log; |