mirror of
https://github.com/3b1b/manim.git
synced 2025-08-29 20:42:02 +00:00
7 lines
86 B
GLSL
7 lines
86 B
GLSL
#version 330
|
|
|
|
out float frag_depth;
|
|
|
|
void main() {
|
|
frag_depth = gl_FragCoord.z;
|
|
}
|