mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
10 lines
138 B
GLSL
10 lines
138 B
GLSL
#version 110
|
|
|
|
uniform sampler2D u_sampler;
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(u_sampler, tex_coords);
|
|
} |