You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
258 B

out vec4 sk_FragColor;
uniform vec4 colorGreen;
uniform vec4 colorRed;
vec4 main() {
int a = 0;
int b = 0;
int c = 0;
int d = 0;
a = 1;
b = 2;
c = 5;
return ((a == 1 && b == 2) && c == 5) && d == 0 ? colorGreen : colorRed;
}