1#version 450 2layout(early_fragment_tests) in; 3layout(depth_greater) out float gl_FragDepth; 4 5void main() 6{ 7 gl_FragDepth = 0.5; 8} 9