diff options
author | Nico Weber <thakis@chromium.org> | 2023-04-29 18:22:51 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-30 05:57:20 +0200 |
commit | adec1abf81761757906a2211c8eecb553b268c2b (patch) | |
tree | 32ae22322f7018eba67743c3921816b0b1a64cee /Tests/LibGfx | |
parent | 22202715fc168d75edcc149f40a3830f25c975a6 (diff) | |
download | serenity-adec1abf81761757906a2211c8eecb553b268c2b.zip |
LibGfx: Move CIELAB to its own file
Diffstat (limited to 'Tests/LibGfx')
-rw-r--r-- | Tests/LibGfx/TestICCProfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibGfx/TestICCProfile.cpp b/Tests/LibGfx/TestICCProfile.cpp index 5c5386eb1b..4af7ffa61a 100644 --- a/Tests/LibGfx/TestICCProfile.cpp +++ b/Tests/LibGfx/TestICCProfile.cpp @@ -175,7 +175,7 @@ TEST_CASE(to_lab) // // new Color("srgb", [1, 1, 1]).lab.toString(); - Gfx::ICC::Profile::CIELAB expected[] = { + Gfx::CIELAB expected[] = { { 0, 0, 0 }, { 54.29054294696968, 80.80492033462421, 69.89098825896275 }, { 87.81853633115202, -79.27108223854806, 80.99459785152247 }, |