1#version 130 2 3varying vec4 Color; 4varying float Depth; 5 6void main() 7{ 8 gl_FragDepth = Depth; 9 gl_FragColor = Color; 10} 11