8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
|
|
uniform half4 colorGreen, colorRed;
|
||
|
|
|
||
|
|
half4 main(float2 coords) {
|
||
|
|
switch (int(colorGreen.g)) {
|
||
|
|
default: return colorGreen;
|
||
|
|
}
|
||
|
|
}
|