Files
Lucina3DS/externals/glslang/Test/hlsl.emptystructreturn.frag
2025-02-06 22:24:29 +08:00

14 lines
108 B
GLSL

struct ps_in
{
};
struct ps_out
{
};
ps_out main (ps_in i)
{
ps_out o;
return o;
}