mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-31 16:08:43 +03:00
13 lines
173 B
Forth
13 lines
173 B
Forth
|
|
#version 100
|
||
|
|
|
||
|
|
precision highp float;
|
||
|
|
|
||
|
|
uniform sampler2D uniform_texture;
|
||
|
|
|
||
|
|
varying vec2 tex_coord;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = texture2D(uniform_texture, tex_coord);
|
||
|
|
}
|