Files
SMH-Engine/legacy/resources/shaders/shadowmap.frag
2019-02-22 21:55:53 +00:00

8 lines
93 B
GLSL

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