1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-14 19:17:48 +01:00
imgui/examples/vulkan_example/glsl_shader.frag

15 lines
248 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);
}