1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:57:45 +00:00

ICC: Rename XYZ and XYZNumber fields to uppercase

Given that XYZ and xyz are distinct things, let's use the correct
case for these member variables.

No behavior change.
This commit is contained in:
Nico Weber 2023-04-28 14:04:27 -04:00 committed by Andreas Kling
parent 1e5ececf75
commit 227072a5af
4 changed files with 18 additions and 18 deletions

View file

@ -114,7 +114,7 @@ TEST_CASE(to_pcs)
};
auto vec3_from_xyz = [](Gfx::ICC::XYZ const& xyz) {
return FloatVector3 { xyz.x, xyz.y, xyz.z };
return FloatVector3 { xyz.X, xyz.Y, xyz.Z };
};
#define EXPECT_APPROXIMATE_VECTOR3(v1, v2) \