blob: 5daf779170987e0ca0f391a18cf9764b8fb5fac1 [file] [log] [blame]
uniform half4 input, expected;
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
const half4 constVal = half4(0);
return (cos(input.x) == expected.x &&
cos(input.xy) == expected.xy &&
cos(input.xyz) == expected.xyz &&
cos(input.xyzw) == expected.xyzw &&
cos(constVal.x) == expected.x &&
cos(constVal.xy) == expected.xy &&
cos(constVal.xyz) == expected.xyz &&
cos(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
}