1half4 main(float2 coords) { 2 half rgb[3], a; 3 rgb[0] = 0; 4 rgb[1] = 1; 5 rgb[2] = 0; 6 a = 1; 7 return half4(rgb[0], rgb[1], rgb[2], a); 8} 9