mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
9 lines
127 B
GLSL
9 lines
127 B
GLSL
|
#version 450
|
||
|
layout(early_fragment_tests) in;
|
||
|
layout(depth_less) out float gl_FragDepth;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragDepth = 0.5;
|
||
|
}
|