blob: 0cd0f7c474d08a71a51933ff5837fe5b135e3a39 [file] [log] [blame]
uniform half4 colorGreen, colorRed;
half4 main(float2 xy) {
switch (1) {
case 1: return colorGreen;
default: return colorRed;
}
}