1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 11:38:34 +02:00
imgui/backends/vulkan/glsl_shader.frag

15 lines
249 B
GLSL
Raw Normal View History

2016-03-09 16:39:54 +01:00
#version 450 core
layout(location = 0) out vec4 fColor;
2016-03-09 16:39:54 +01:00
layout(set=0, binding=0) uniform sampler2D sTexture;
layout(location = 0) in struct {
2016-03-09 16:39:54 +01:00
vec4 Color;
vec2 UV;
} In;
void main()
{
fColor = In.Color * texture(sTexture, In.UV.st);
}