VoxelEngine/res/shaders/screen.glslf
2024-03-08 21:54:17 +03:00

10 lines
124 B
GLSL

in vec2 v_coord;
out vec4 f_color;
uniform sampler2D u_texture0;
void main(){
f_color = texture(u_texture0, v_coord);
}