mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
12 lines
151 B
GLSL
12 lines
151 B
GLSL
#version 140
|
|
|
|
uniform sampler2D u_sampler;
|
|
|
|
in vec2 tex_coords;
|
|
|
|
out vec4 frag_color;
|
|
|
|
void main()
|
|
{
|
|
frag_color = texture(u_sampler, tex_coords);
|
|
} |