Files

11 lines
149 B
GLSL
Raw Permalink Normal View History

2026-05-11 19:29:55 +01:00
#version 110
uniform sampler2D uniform_texture;
varying vec2 tex_coord;
void main()
{
gl_FragColor = texture2D(uniform_texture, tex_coord);
}