Merge pull request #545 from jaxvanyang/patch-1

Add missing DCI_P3 gamut option to rgb2spec_opt help message
This commit is contained in:
Matt Pharr 2026-06-14 15:54:29 -07:00 • committed by GitHub
commit 0fef7de38d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -791,7 +791,7 @@ int main(int argc, char **argv) {
if (argc < 3) {
printf("Syntax: rgb2spec_opt <resolution> <output> [<gamut>]\n"
"where <gamut> is one of "
"sRGB,eRGB,XYZ,ProPhotoRGB,ACES2065_1,REC2020\n");
"sRGB,eRGB,XYZ,ProPhotoRGB,ACES2065_1,REC2020,DCI_P3\n");
exit(-1);
}
Gamut gamut = SRGB;