mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Rename compositor files.
This commit is contained in:
parent
45b297bd0b
commit
369c5b8329
3 changed files with 9 additions and 9 deletions
|
@ -28,8 +28,8 @@ use azure::azure_hl;
|
|||
mod quadtree;
|
||||
mod compositor_layer;
|
||||
|
||||
mod run;
|
||||
mod run_headless;
|
||||
mod compositor;
|
||||
mod headless;
|
||||
|
||||
/// The implementation of the layers-based compositor.
|
||||
#[deriving(Clone)]
|
||||
|
@ -190,15 +190,15 @@ impl CompositorTask {
|
|||
|
||||
match compositor.mode {
|
||||
Windowed(ref app) => {
|
||||
run::IOCompositor::create(app,
|
||||
opts,
|
||||
port,
|
||||
constellation_chan.clone(),
|
||||
profiler_chan);
|
||||
compositor::IOCompositor::create(app,
|
||||
opts,
|
||||
port,
|
||||
constellation_chan.clone(),
|
||||
profiler_chan);
|
||||
}
|
||||
Headless => {
|
||||
run_headless::NullCompositor::create(port,
|
||||
constellation_chan.clone());
|
||||
headless::NullCompositor::create(port,
|
||||
constellation_chan.clone());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue