testcolorspace: added an additional PQ blend color case

This commit is contained in:
Sam Lantinga
2026-07-23 10:50:23 -07:00
parent 413ac5084d
commit 982787979f

View File

@@ -454,6 +454,7 @@ static void RenderBlendDrawing(void)
(cr.r == 191 && cr.g == 162 && cr.b == 82)) {
DrawText(x, y, "Correct blend color, blending in sRGB space");
} else if ((cr.r == 214 && cr.g == 156 && cr.b == 113) ||
(cr.r == 214 && cr.g == 155 && cr.b == 113) ||
(cr.r == 215 && cr.g == 155 && cr.b == 113) ||
(cr.r == 215 && cr.g == 154 && cr.b == 112)) {
DrawText(x, y, "Correct blend color, blending in PQ space");
@@ -517,6 +518,7 @@ static void RenderBlendTexture(void)
(cr.r == 191 && cr.g == 162 && cr.b == 82)) {
DrawText(x, y, "Correct blend color, blending in sRGB space");
} else if ((cr.r == 214 && cr.g == 156 && cr.b == 113) ||
(cr.r == 214 && cr.g == 155 && cr.b == 113) ||
(cr.r == 215 && cr.g == 155 && cr.b == 113) ||
(cr.r == 215 && cr.g == 154 && cr.b == 112)) {
DrawText(x, y, "Correct blend color, blending in PQ space");