glslang/Test/hlsl.emptystructreturn.frag

14 lines
108 B
GLSL
Raw Normal View History

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