1half4 main(float2 coords) { 2 float x; 3 float y; 4 x = y = 1; 5 6 half a, b, c; 7 a = b = c = 0; 8 9 return half4(a * b, x, c, y); 10} 11