Lines Matching refs:half4
1 uniform half4 testInputs, colorGreen, colorRed;
3 half4 main(float2 coords) {
4 half4 v = testInputs;
5 v = half4(v.x, 1, 1, 1);
6 v = half4(v.xy, 1, 1);
7 v = half4(v.x1, 1, 1);
8 v = half4(v.0y, 1, 1);
9 v = half4(v.xyz, 1);
10 v = half4(v.xy1, 1);
11 v = half4(v.x0z, 1);
12 v = half4(v.x10, 1);
13 v = half4(v.1yz, 1);
14 v = half4(v.0y1, 1);
15 v = half4(v.11z, 1);
31 return v == half4(0, 1, 1, 1) ? colorGreen : colorRed;