diff options
author | Peter <peter.hall@algomi.com> | 2016-04-17 18:10:26 +0100 |
---|---|---|
committer | Peter <peter.hall@algomi.com> | 2016-04-17 18:39:49 +0100 |
commit | b0ad3ddf5b6bfea86cd1b21794ffcb72aefb0576 (patch) | |
tree | ee4ecf5a60f15af1117a18337e2095c4264f131e /components/layout/layout_thread.rs | |
parent | b00c2740e300fd7b8c18276d8d416a9f78c42674 (diff) | |
download | servo-b0ad3ddf5b6bfea86cd1b21794ffcb72aefb0576.tar.gz servo-b0ad3ddf5b6bfea86cd1b21794ffcb72aefb0576.zip |
Updated euclid to version 0.6.5
And updated existing usages of Matrix4 to use Matrix4D<T>
Diffstat (limited to 'components/layout/layout_thread.rs')
-rw-r--r-- | components/layout/layout_thread.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs index 9c184880ecd..d226188f698 100644 --- a/components/layout/layout_thread.rs +++ b/components/layout/layout_thread.rs @@ -13,7 +13,7 @@ use azure::azure::AzColor; use construct::ConstructionResult; use context::{LayoutContext, SharedLayoutContext, heap_size_of_local_context}; use display_list_builder::ToGfxColor; -use euclid::Matrix4; +use euclid::Matrix4D; use euclid::point::Point2D; use euclid::rect::Rect; use euclid::scale_factor::ScaleFactor; @@ -890,8 +890,8 @@ impl LayoutThread { 0, filter::T::new(Vec::new()), mix_blend_mode::T::normal, - Matrix4::identity(), - Matrix4::identity(), + Matrix4D::identity(), + Matrix4D::identity(), true, false, None); |