glslang/Test/hlsl.emptystructreturn.vert

14 lines
95 B
GLSL

struct vs_in
{
};
struct vs_out
{
};
vs_out main (vs_in i)
{
vs_out o;
return o;
}