diff options
author | Pyfisch <pyfisch@gmail.com> | 2018-03-24 21:50:15 +0100 |
---|---|---|
committer | Pyfisch <pyfisch@gmail.com> | 2018-04-22 13:13:45 +0200 |
commit | c0be925bed2296e5cf16c95925016fa18d28e177 (patch) | |
tree | b662ba7936493d144d78b3c1609077c213636902 /components/layout/context.rs | |
parent | 782d4d4af61b7c9f60dfb494f8a5bfb6407945d2 (diff) | |
download | servo-c0be925bed2296e5cf16c95925016fa18d28e177.tar.gz servo-c0be925bed2296e5cf16c95925016fa18d28e177.zip |
Move DL items from gfx to layout
Implement corner clipping.
Remove PixelFormat from WebrenderImageInfo.
Use WebRender text shadow.
Remove MallocSizeOf and Deserialize for DL items.
Closes #19649, #19680, #19802
Diffstat (limited to 'components/layout/context.rs')
-rw-r--r-- | components/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/context.rs b/components/layout/context.rs index 0089a8733cb..f851d06799d 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -4,8 +4,8 @@ //! Data needed by the layout thread. +use display_list::items::{WebRenderImageInfo, OpaqueNode}; use fnv::FnvHasher; -use gfx::display_list::{WebRenderImageInfo, OpaqueNode}; use gfx::font_cache_thread::FontCacheThread; use gfx::font_context::FontContext; use malloc_size_of::{MallocSizeOf, MallocSizeOfOps}; |