mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 02:43:03 +00:00
20 lines
249 B
GLSL
20 lines
249 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
constant float _57 = {};
|
|
|
|
struct main0_out
|
|
{
|
|
float4 m_3 [[color(0)]];
|
|
};
|
|
|
|
fragment main0_out main0()
|
|
{
|
|
main0_out out = {};
|
|
out.m_3 = float4(_57);
|
|
return out;
|
|
}
|
|
|