summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.depthOut.frag
blob: d90fc0f8cd29f168a3070908cda07c38d6abdc65 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 450

in vec4 Color;
in float Depth;

layout(depth_greater) out float gl_FragDepth;

void main()
{
    gl_FragDepth = Depth;
}