Files
SMH-Engine/legacy/really-legacy/resources/shaders/shadowmap.frag
2019-10-04 17:30:57 +01:00

8 lines
86 B
GLSL

#version 330
out float fragdepth;
void main(){
gl_FragDepth = gl_FragCoord.z;
}