Use Apple RGB color profile

This commit is contained in:
elasota
2020-06-07 20:42:49 -04:00
parent b55a508686
commit 5b95fd8c6b
5 changed files with 65 additions and 72 deletions

View File

@@ -29,5 +29,7 @@ SDrawQuadPixelOutput PSMain(SDrawQuadPixelInput input)
if (result.color.a <= 0.0)
discard;
result.color.rgb = AppleRGBToSRGBLinear(result.color.rgb);
return result;
}