You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
573 B

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;
}