Remove modes in servo-gfx.

This commit is contained in:
Jack Moffitt 2013-05-10 13:49:40 -06:00
parent 19c0fc6465
commit 3c291678ad

View file

@ -25,6 +25,6 @@ pub struct LayerBufferSet {
/// submit them to be drawn to the display.
pub trait Compositor {
fn begin_drawing(&self, next_dt: comm::Chan<LayerBufferSet>);
fn draw(&self, next_dt: comm::Chan<LayerBufferSet>, +draw_me: LayerBufferSet);
fn draw(&self, next_dt: comm::Chan<LayerBufferSet>, draw_me: LayerBufferSet);
}