mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 09:40:11 +00:00
18 lines
235 B
GLSL
18 lines
235 B
GLSL
|
#include <metal_stdlib>
|
||
|
#include <simd/simd.h>
|
||
|
|
||
|
using namespace metal;
|
||
|
|
||
|
struct main0_out
|
||
|
{
|
||
|
float gl_FragDepth [[depth(less)]];
|
||
|
};
|
||
|
|
||
|
fragment main0_out main0()
|
||
|
{
|
||
|
main0_out out = {};
|
||
|
out.gl_FragDepth = 0.5;
|
||
|
return out;
|
||
|
}
|
||
|
|