1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:07:35 +00:00

LibGfx/ICC: Extract sRGB_curve() function

This returns just the tone reproduction curve of the sRGB profile.
This commit is contained in:
Nico Weber 2023-04-11 08:53:28 -04:00 committed by Linus Groh
parent 5da9057a8f
commit 5df35d030f
2 changed files with 10 additions and 3 deletions

View file

@ -15,4 +15,6 @@ class Profile;
ErrorOr<NonnullRefPtr<Profile>> sRGB();
ErrorOr<NonnullRefPtr<TagData>> sRGB_curve();
}