11 lines
144 B
GLSL
11 lines
144 B
GLSL
#version 140
|
|
|
|
uniform sampler2D uniform_texture;
|
|
|
|
in vec2 tex_coord;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(uniform_texture, tex_coord);
|
|
}
|