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

varying vec4 Color;
varying float Depth;

void main()
{
    gl_FragDepth = Depth;
    gl_FragColor = Color;
}