Rename gfx/render_task.rs -> gfx/paint_task.rs

This commit is contained in:
Tetsuharu OHZEKI 2014-12-08 03:31:13 +09:00
parent ccef723851
commit daba904302
10 changed files with 12 additions and 12 deletions

View file

@ -24,7 +24,7 @@ use azure::azure::AzFloat;
use collections::dlist::{mod, DList};
use geom::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D};
use libc::uintptr_t;
use render_task::RenderLayer;
use paint_task::RenderLayer;
use script_traits::UntrustedNodeAddress;
use servo_msg::compositor_msg::LayerId;
use servo_net::image::base::Image;

View file

@ -59,7 +59,7 @@ mod render_context;
pub mod color;
#[path="display_list/mod.rs"]
pub mod display_list;
pub mod render_task;
pub mod paint_task;
// Fonts
pub mod font;