Files
QIDIStudio/resources/shaders/140/imgui.fs

12 lines
170 B
Forth
Raw Normal View History

2025-05-05 14:58:54 +08:00
#version 140
2025-08-01 14:48:54 +08:00
uniform sampler2D s_texture;
2025-05-05 14:58:54 +08:00
in vec2 Frag_UV;
in vec4 color;
out vec4 frag_color;
void main()
{
2025-08-01 14:48:54 +08:00
frag_color = color * texture(s_texture, Frag_UV.st);
2025-05-05 14:58:54 +08:00
}