Files
2021-03-08 14:30:57 -08:00

13 lines
148 B
GLSL

varying float outDepth;
void main()
{
//float l = (input.depth + 1.0f) * 0.5f;
float l = outDepth;
gl_FragColor = vec4( l, l, l, 1.0 );
}