blob: e531cb2dbf8f627181a82908e833982b4d709172 [file] [log] [blame]
/*#pragma settings RewriteSwitchStatements*/
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
switch (int(colorGreen.g)) {
default: return colorGreen;
}
}