Rename compositor files.

This commit is contained in:
Tetsuharu OHZEKI 2013-12-17 20:24:30 +09:00
parent 45b297bd0b
commit 369c5b8329
3 changed files with 9 additions and 9 deletions

View file

@ -28,8 +28,8 @@ use azure::azure_hl;
mod quadtree; mod quadtree;
mod compositor_layer; mod compositor_layer;
mod run; mod compositor;
mod run_headless; mod headless;
/// The implementation of the layers-based compositor. /// The implementation of the layers-based compositor.
#[deriving(Clone)] #[deriving(Clone)]
@ -190,14 +190,14 @@ impl CompositorTask {
match compositor.mode { match compositor.mode {
Windowed(ref app) => { Windowed(ref app) => {
run::IOCompositor::create(app, compositor::IOCompositor::create(app,
opts, opts,
port, port,
constellation_chan.clone(), constellation_chan.clone(),
profiler_chan); profiler_chan);
} }
Headless => { Headless => {
run_headless::NullCompositor::create(port, headless::NullCompositor::create(port,
constellation_chan.clone()); constellation_chan.clone());
} }
} }