summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/stenciloutline/material.frag
blob: 8fc52e014ddf09cb47032ed6093a6895b292eeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 440

layout(location = 0) out vec4 fragColor;

layout(std140, binding = 0) uniform buf {
    mat4 mvp;
    vec3 color;
};

void main()
{
    fragColor = vec4(color, 1.0);
}