mirror of
https://github.com/servo/servo.git
synced 2025-08-11 00:15:32 +01:00
Use euclid from crates.io
This commit is contained in:
parent
7355bf1061
commit
8cbfb3482c
104 changed files with 272 additions and 306 deletions
|
@ -27,9 +27,9 @@ use azure::azure::AzFloat;
|
|||
use azure::azure_hl::Color;
|
||||
|
||||
use std::collections::linked_list::{self, LinkedList};
|
||||
use geom::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D, Matrix4};
|
||||
use geom::approxeq::ApproxEq;
|
||||
use geom::num::Zero;
|
||||
use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D, Matrix4};
|
||||
use euclid::approxeq::ApproxEq;
|
||||
use euclid::num::Zero;
|
||||
use libc::uintptr_t;
|
||||
use paint_task::PaintLayer;
|
||||
use msg::compositor_msg::LayerId;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
use display_list::{DisplayItem, DisplayList, StackingContext};
|
||||
|
||||
use std::collections::linked_list::LinkedList;
|
||||
use geom::rect::Rect;
|
||||
use euclid::rect::Rect;
|
||||
use util::geometry::{self, Au};
|
||||
use std::sync::Arc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue