mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 17:08:41 +03:00
11 lines
159 B
GLSL
11 lines
159 B
GLSL
#version 110
|
|
|
|
uniform sampler2D Texture;
|
|
|
|
varying vec2 Frag_UV;
|
|
varying vec4 color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = color * texture2D(Texture, Frag_UV.st);
|
|
} |