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