summaryrefslogtreecommitdiffstats
path: root/tests/auto/qshaderbaker/data/color.frag
blob: 62ff1b0f5511b4a50456af542633a8a790076db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
}