mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move display_list from layout to gfx
This commit is contained in:
parent
000b37cab6
commit
4bb240ac79
5 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@ use vec_from_buf = vec::raw::from_buf;
|
|||
use ptr::addr_of;
|
||||
use dom::event::Event;
|
||||
use dvec::DVec;
|
||||
use layout::display_list::DisplayList;
|
||||
use display_list::DisplayList;
|
||||
use std::cell::Cell;
|
||||
|
||||
pub type PngCompositor = Chan<Msg>;
|
||||
|
|
|
@ -2,7 +2,7 @@ use platform::osmain;
|
|||
use geometry::*;
|
||||
use comm::*;
|
||||
use image::base::Image;
|
||||
use dl = layout::display_list;
|
||||
use dl = display_list;
|
||||
use azure::*;
|
||||
use azure::bindgen::*;
|
||||
use libc::size_t;
|
||||
|
|
|
@ -2,7 +2,7 @@ export build_display_list;
|
|||
|
||||
use css::values::{BgColor, BgTransparent, Specified};
|
||||
use base::{Box, BTree, ImageHolder, TextBoxKind};
|
||||
use dl = layout::display_list;
|
||||
use dl = gfx::display_list;
|
||||
use dom::base::{Text, NodeScope};
|
||||
use dom::rcu::Scope;
|
||||
use either::{Left, Right};
|
||||
|
|
|
@ -55,7 +55,6 @@ mod layout {
|
|||
mod base;
|
||||
mod block;
|
||||
mod box_builder;
|
||||
mod display_list;
|
||||
mod display_list_builder;
|
||||
mod inline;
|
||||
mod layout_task;
|
||||
|
@ -69,6 +68,7 @@ mod gfx {
|
|||
mod render_task;
|
||||
mod compositor;
|
||||
mod png_compositor;
|
||||
mod display_list;
|
||||
}
|
||||
|
||||
mod image {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue