Move display_list from layout to gfx

This commit is contained in:
Brian Anderson 2012-09-13 18:17:30 -07:00
parent 000b37cab6
commit 4bb240ac79
5 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ use vec_from_buf = vec::raw::from_buf;
use ptr::addr_of; use ptr::addr_of;
use dom::event::Event; use dom::event::Event;
use dvec::DVec; use dvec::DVec;
use layout::display_list::DisplayList; use display_list::DisplayList;
use std::cell::Cell; use std::cell::Cell;
pub type PngCompositor = Chan<Msg>; pub type PngCompositor = Chan<Msg>;

View file

@ -2,7 +2,7 @@ use platform::osmain;
use geometry::*; use geometry::*;
use comm::*; use comm::*;
use image::base::Image; use image::base::Image;
use dl = layout::display_list; use dl = display_list;
use azure::*; use azure::*;
use azure::bindgen::*; use azure::bindgen::*;
use libc::size_t; use libc::size_t;

View file

@ -2,7 +2,7 @@ export build_display_list;
use css::values::{BgColor, BgTransparent, Specified}; use css::values::{BgColor, BgTransparent, Specified};
use base::{Box, BTree, ImageHolder, TextBoxKind}; use base::{Box, BTree, ImageHolder, TextBoxKind};
use dl = layout::display_list; use dl = gfx::display_list;
use dom::base::{Text, NodeScope}; use dom::base::{Text, NodeScope};
use dom::rcu::Scope; use dom::rcu::Scope;
use either::{Left, Right}; use either::{Left, Right};

View file

@ -55,7 +55,6 @@ mod layout {
mod base; mod base;
mod block; mod block;
mod box_builder; mod box_builder;
mod display_list;
mod display_list_builder; mod display_list_builder;
mod inline; mod inline;
mod layout_task; mod layout_task;
@ -69,6 +68,7 @@ mod gfx {
mod render_task; mod render_task;
mod compositor; mod compositor;
mod png_compositor; mod png_compositor;
mod display_list;
} }
mod image { mod image {