mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 05:04:45 +00:00
11 lines
138 B
GLSL
11 lines
138 B
GLSL
#version 330
|
|
precision highp float;
|
|
|
|
|
|
layout(location = 0) out float fragmentdepth;
|
|
|
|
void main(void)
|
|
{
|
|
fragmentdepth = gl_FragCoord.z;
|
|
}
|