8 lines
90 B
GLSL
8 lines
90 B
GLSL
#version 150
|
|
|
|
out float gl_FragDepth;
|
|
|
|
void main() {
|
|
gl_FragDepth = gl_FragCoord.z;
|
|
}
|