mirror of
https://github.com/3b1b/manim.git
synced 2025-11-15 23:17:47 +00:00
8 lines
86 B
Text
8 lines
86 B
Text
|
|
#version 330
|
||
|
|
|
||
|
|
out float frag_depth;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
frag_depth = gl_FragCoord.z;
|
||
|
|
}
|