blob: ff2222609f71c2a5d3bbc069abd61bfa862ed2ef [file] [log] [blame]
uniform half4 colorGreen, colorRed;
half4 main() {
const bool x = true;
if (!x) return colorRed;
if (x) return colorGreen;
}