10 lines
134 B
GLSL
10 lines
134 B
GLSL
|
#version 450
|
||
|
layout(depth_greater) out float gl_FragDepth;
|
||
|
layout(early_fragment_tests) in;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragDepth = 0.5;
|
||
|
}
|
||
|
|