12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
uniform half4 colorRed, colorGreen;
|
|
|
|
half4 main(float2 coords) {
|
|
half4 result = colorRed;
|
|
const float x = 5;
|
|
const float y = 10;
|
|
@if (x < y) {
|
|
result = colorGreen;
|
|
}
|
|
return result;
|
|
}
|