PrusaSlicer-NonPlainar/resources/shaders/140/imgui.fs

11 lines
156 B
Forth
Raw Normal View History

#version 110
uniform sampler2D Texture;
in vec2 Frag_UV;
in vec4 Frag_Color;
void main()
{
gl_FragColor = Frag_Color * texture2D(Texture, Frag_UV.st);
}