1
0
Fork 0
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.

12 lines
177 B

out vec4 sk_FragColor;
void main() {
int x = 0;
int y = 0;
int z = 0;
x = 1;
y = 1;
z = 1;
sk_FragColor.xyz = vec3(float(x), float(y), float(z));
}