aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag
blob: 313a888041009b40a853788d88d5b037b4c4ad0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 450 core
layout(location = 0) out vec4 fColor;

layout(set=0, binding=0) uniform sampler2D sTexture;

layout(location = 0) in struct{
    vec4 Color;
    vec2 UV;
} In;

void main()
{
    fColor = In.Color * texture(sTexture, In.UV.st);
}