1uniform half4 colorGreen, colorRed; 2 3half4 main(float2 xy) { 4 switch (1) { 5 case 1: return colorGreen; 6 default: return colorRed; 7 } 8} 9