2021-02-01 16:52:10 +00:00
|
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
|
|
|
|
half4 main() {
|
2021-03-04 21:00:20 +00:00
|
|
|
const bool x = true;
|
2021-02-01 16:52:10 +00:00
|
|
|
if (!x) return colorRed;
|
2021-03-04 21:00:20 +00:00
|
|
|
if (x) return colorGreen;
|
2020-11-03 16:33:49 +00:00
|
|
|
}
|