blob: 55b7be137ee3cc6cd9d6729d603ceae42491c334 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#version 450 core
layout (binding = 0, set = 2) uniform sampler2D texDepth;
layout (location = 0) in vec2 tex_coord;
void main()
{
gl_FragDepth = texture(texDepth, tex_coord).r;
}
|