blob: c910faac5378f3782e1c202f2e97e538c658a02f [file] [log] [blame]
uniform half4 testInputs; // -1.25, 0, 0.75, 2.25
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
const float4 expectedA = half4(-1.0, 0.0, 0.0, 2.0);
const float4 constVal = half4(-6.75, -0.5, 3.5, 1.25);
const float4 expectedB = half4(-6.0, -0.0, 3.0, 1.0);
return (trunc(testInputs.x) == expectedA.x &&
trunc(testInputs.xy) == expectedA.xy &&
trunc(testInputs.xyz) == expectedA.xyz &&
trunc(testInputs.xyzw) == expectedA.xyzw &&
trunc(constVal.x) == expectedB.x &&
trunc(constVal.xy) == expectedB.xy &&
trunc(constVal.xyz) == expectedB.xyz &&
trunc(constVal.xyzw) == expectedB.xyzw) ? colorGreen : colorRed;
}