imgui/examples/vulkan_example/glsl_shader.frag
Håvard Mathisen 4cbd316f01 Vulkan example.
2016-03-09 16:39:54 +01:00

15 lines
237 B
GLSL

#version 450 core
layout(location = 0, index = 0) out vec4 fColor;
layout(set=0, binding=0) uniform sampler2D sTexture;
in block{
vec4 Color;
vec2 UV;
} In;
void main()
{
fColor = In.Color * texture(sTexture, In.UV.st);
}