/*uniform vec3 CamPos, CamDir;*/
/*uniform float DepthNear, DepthFar;

varying float CameraDepth;*/
varying vec4 pos;


void main()
{
	pos = (gl_ModelViewMatrix*gl_Vertex);     
	gl_Position = gl_ModelViewProjectionMatrix*gl_Vertex;
}