8 lines
97 B
GLSL
8 lines
97 B
GLSL
|
#version 450
|
||
|
layout(depth_greater) out float gl_FragDepth;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragDepth = 0.5;
|
||
|
}
|