Bug 1494222: set XYZ PCS on internal RGB profiles. r=nical

--HG--
extra : histedit_source : b53b8c299be35db04ca199d0798daa208e447150
This commit is contained in:
Thomas P. 2018-09-26 08:38:24 +00:00
parent 7b759af801
commit 7d42fc9019

View File

@ -929,6 +929,7 @@ qcms_profile* qcms_profile_create_rgb_with_gamma(
profile->class = DISPLAY_DEVICE_PROFILE;
profile->rendering_intent = QCMS_INTENT_PERCEPTUAL;
profile->color_space = RGB_SIGNATURE;
profile->pcs = XYZ_SIGNATURE;
return profile;
}
@ -958,6 +959,7 @@ qcms_profile* qcms_profile_create_rgb_with_table(
profile->class = DISPLAY_DEVICE_PROFILE;
profile->rendering_intent = QCMS_INTENT_PERCEPTUAL;
profile->color_space = RGB_SIGNATURE;
profile->pcs = XYZ_SIGNATURE;
return profile;
}