mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +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 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,15 +190,15 @@ 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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue