summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/shared/color.frag
blob: bb94a5a60593ec9a1c81676d3e565e074e923742 (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;
} ubuf;

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