Dalamud/Dalamud/Interface/ImGuiScene/resources/shaders/imgui-frag.glsl
2024-07-19 18:13:37 +09:00

12 lines
No EOL
174 B
GLSL

#version 150
uniform sampler2D Texture;
in vec2 Frag_UV;
in vec4 Frag_Color;
out vec4 Out_Color;
void main()
{
Out_Color = Frag_Color * texture(Texture, Frag_UV.st);
}