mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
self import
This commit is contained in:
parent
e44ee70faf
commit
b68b7e87c8
28 changed files with 36 additions and 36 deletions
|
@ -25,7 +25,7 @@ use text::glyph::CharIndex;
|
|||
use text::TextRun;
|
||||
|
||||
use azure::azure::AzFloat;
|
||||
use collections::dlist::{mod, DList};
|
||||
use collections::dlist::{self, DList};
|
||||
use geom::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D};
|
||||
use geom::num::Zero;
|
||||
use libc::uintptr_t;
|
||||
|
@ -34,7 +34,7 @@ use servo_msg::compositor_msg::LayerId;
|
|||
use servo_net::image::base::Image;
|
||||
use servo_util::cursor::Cursor;
|
||||
use servo_util::dlist as servo_dlist;
|
||||
use servo_util::geometry::{mod, Au, MAX_RECT, ZERO_RECT};
|
||||
use servo_util::geometry::{self, Au, MAX_RECT, ZERO_RECT};
|
||||
use servo_util::range::Range;
|
||||
use servo_util::smallvec::{SmallVec, SmallVec8};
|
||||
use std::fmt;
|
||||
|
|
|
@ -8,7 +8,7 @@ use display_list::{DisplayItem, DisplayList, StackingContext};
|
|||
|
||||
use collections::dlist::DList;
|
||||
use geom::rect::Rect;
|
||||
use servo_util::geometry::{mod, Au};
|
||||
use servo_util::geometry::{self, Au};
|
||||
use std::sync::Arc;
|
||||
|
||||
/// Transforms a display list to produce a visually-equivalent, but cheaper-to-paint, one.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue