voxspatium/data/shaders/chunk.frag

8 lines
92 B
GLSL

#version 330
in vec2 uv_p;
void main(void) {
gl_FragColor = vec4(uv_p.xy, 0.5f, 1.0f);
}