mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Split Au type into separate crate, with minimal dependencies.
This commit is contained in:
parent
fb6d0946cb
commit
339a3f869b
72 changed files with 376 additions and 235 deletions
|
@ -4,12 +4,13 @@
|
|||
|
||||
//! Transforms a display list to produce a visually-equivalent, but cheaper-to-paint, one.
|
||||
|
||||
use app_units::Au;
|
||||
use display_list::{DisplayItem, DisplayList, StackingContext};
|
||||
use euclid::rect::Rect;
|
||||
use euclid::{Matrix2D, Matrix4};
|
||||
use std::collections::linked_list::LinkedList;
|
||||
use std::sync::Arc;
|
||||
use util::geometry::{self, Au};
|
||||
use util::geometry;
|
||||
|
||||
/// Transforms a display list to produce a visually-equivalent, but cheaper-to-paint, one.
|
||||
pub struct DisplayListOptimizer {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue