glslang/Test/hlsl.emptystructreturn.frag

14 lines
108 B
GLSL

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