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:
parent
1e5ececf75
commit
227072a5af
4 changed files with 18 additions and 18 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue