1uniform half4 colorGreen; 2 3half4 blocky(half4 c) { 4 { 5 return c; 6 } 7} 8 9half4 main(float2 coords) { 10 return blocky(colorGreen); 11} 12