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.
|
|
|
out vec4 sk_FragColor;
|
|
vec4 main() {
|
|
float b = 2.0;
|
|
float c = 3.0;
|
|
float d = c;
|
|
b++;
|
|
d++;
|
|
return vec4(float(b == 2.0), float(b == 3.0), float(d == 5.0), float(d == 4.0));
|
|
}
|