aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/values/generics/transform.rs
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2023-05-22 15:05:17 +0200
committerOriol Brufau <obrufau@igalia.com>2023-05-24 18:32:43 +0200
commitfa840e166636d1f4529ac8dbaef6fa326d07289b (patch)
tree59d1216482f67be25ea61a071eed9f98d7d65d52 /components/style/values/generics/transform.rs
parentce45f68d9c07b34cb017ec0fe89de542f0771744 (diff)
downloadservo-fa840e166636d1f4529ac8dbaef6fa326d07289b.tar.gz
servo-fa840e166636d1f4529ac8dbaef6fa326d07289b.zip
style: Implement transform: perspective(none)
Differential Revision: https://phabricator.services.mozilla.com/D123350
Diffstat (limited to 'components/style/values/generics/transform.rs')
-rw-r--r--components/style/values/generics/transform.rs46
1 files changed, 42 insertions, 4 deletions
diff --git a/components/style/values/generics/transform.rs b/components/style/values/generics/transform.rs
index 95f5e999b77..92987f89fe4 100644
--- a/components/style/values/generics/transform.rs
+++ b/components/style/values/generics/transform.rs
@@ -141,6 +141,41 @@ fn is_same<N: PartialEq>(x: &N, y: &N) -> bool {
x == y
}
+/// A value for the `perspective()` transform function, which is either a
+/// non-negative `<length>` or `none`.
+#[derive(
+ Clone,
+ Debug,
+ Deserialize,
+ MallocSizeOf,
+ PartialEq,
+ Serialize,
+ SpecifiedValueInfo,
+ ToComputedValue,
+ ToCss,
+ ToResolvedValue,
+ ToShmem,
+)]
+#[repr(C, u8)]
+pub enum GenericPerspectiveFunction<L> {
+ /// `none`
+ None,
+ /// A `<length>`.
+ Length(L),
+}
+
+impl<L> GenericPerspectiveFunction<L> {
+ /// Returns `f32::INFINITY` or the result of a function on the length value.
+ pub fn infinity_or(&self, f: impl FnOnce(&L) -> f32) -> f32 {
+ match *self {
+ Self::None => std::f32::INFINITY,
+ Self::Length(ref l) => f(l),
+ }
+ }
+}
+
+pub use self::GenericPerspectiveFunction as PerspectiveFunction;
+
#[derive(
Clone,
Debug,
@@ -240,7 +275,7 @@ where
///
/// The value must be greater than or equal to zero.
#[css(function)]
- Perspective(Length),
+ Perspective(GenericPerspectiveFunction<Length>),
/// A intermediate type for interpolation of mismatched transform lists.
#[allow(missing_docs)]
#[css(comma, function = "interpolatematrix")]
@@ -469,9 +504,12 @@ where
let theta = euclid::Angle::radians(theta.radians64());
Transform3D::rotation(0., 0., 1., theta)
},
- Perspective(ref d) => {
- let m = create_perspective_matrix(d.to_pixel_length(None)?);
- m.cast()
+ Perspective(ref p) => {
+ let px = match p {
+ PerspectiveFunction::None => std::f32::INFINITY,
+ PerspectiveFunction::Length(ref p) => p.to_pixel_length(None)?,
+ };
+ create_perspective_matrix(px).cast()
},
Scale3D(sx, sy, sz) => Transform3D::scale(sx.into(), sy.into(), sz.into()),
Scale(sx, sy) => Transform3D::scale(sx.into(), sy.into(), 1.),