aboutsummaryrefslogtreecommitdiffstats
path: root/examples/gui/rhiwindow/shaders/color.frag
blob: 6e0a3bc91f961e7bdad898fd12286c31160d21bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 440

layout(location = 0) in vec3 v_color;

layout(location = 0) out vec4 fragColor;

layout(std140, binding = 0) uniform buf {
    mat4 mvp;
    float opacity;
};

void main()
{
    fragColor = vec4(v_color * opacity, opacity);
}