mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
13 lines
190 B
Forth
13 lines
190 B
Forth
|
|
#version 100
|
||
|
|
|
||
|
|
precision highp float;
|
||
|
|
|
||
|
|
uniform sampler2D Texture;
|
||
|
|
|
||
|
|
varying vec2 Frag_UV;
|
||
|
|
varying vec4 Frag_Color;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = Frag_Color * texture2D(Texture, Frag_UV.st);
|
||
|
|
}
|