mirror of
https://github.com/golyalpha/OrcaSlicer-bambulab.git
synced 2026-06-12 11:47:46 +02:00
11 lines
149 B
GLSL
11 lines
149 B
GLSL
|
|
#version 110
|
||
|
|
|
||
|
|
uniform sampler2D uniform_texture;
|
||
|
|
|
||
|
|
varying vec2 tex_coord;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = texture2D(uniform_texture, tex_coord);
|
||
|
|
}
|