armory/Shaders/clear_depth_pass/clear_depth_pass.frag.glsl
2020-05-11 09:03:13 +02:00

9 lines
90 B
GLSL

#version 450
in vec2 texCoord;
out vec4 fragColor;
void main() {
gl_FragDepth = 1.0;
}