This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/gpu/shaders/gpu_shader_fx_depth_resolve.glsl
2017-05-19 11:09:12 -04:00

16 lines
221 B
GLSL

uniform sampler2D depthbuffer;
in vec4 uvcoordsvar;
void main(void)
{
float depth = texture(depthbuffer, uvcoordsvar.xy).r;
/* XRay background, discard */
if (depth >= 1.0) {
discard;
}
gl_FragDepth = depth;
}