mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Invert control flow, fix resizing, and improve checkerboarding
significantly by giving tiles some time to paint before we render unrendered content.
This commit is contained in:
parent
e483a189a3
commit
10f7b49cf7
27 changed files with 1195 additions and 678 deletions
|
@ -30,6 +30,7 @@ extern crate "util" as servo_util;
|
|||
extern crate gleam;
|
||||
|
||||
extern crate libc;
|
||||
extern crate native;
|
||||
extern crate time;
|
||||
extern crate url;
|
||||
|
||||
|
@ -38,12 +39,14 @@ extern crate core_graphics;
|
|||
#[cfg(target_os="macos")]
|
||||
extern crate core_text;
|
||||
|
||||
pub use compositor_task::{CompositorChan, CompositorTask};
|
||||
pub use compositor_task::{CompositorEventListener, CompositorProxy, CompositorTask};
|
||||
pub use constellation::Constellation;
|
||||
|
||||
pub mod compositor_task;
|
||||
|
||||
mod compositor_layer;
|
||||
mod scrolling;
|
||||
|
||||
mod compositor;
|
||||
mod headless;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue