#version 330 core

layout(location = 0) out float depthValue;
void main()
{
	    depthValue = gl_FragCoord.z;
}
