RetroArch/deps/SPIRV-Cross/reference/shaders-hlsl-no-opt/asm/vert/empty-struct-composite.asm.vert

16 lines
142 B
GLSL

struct Test
{
int empty_struct_member;
};
void vert_main()
{
Test _14 = { 0 };
Test t = _14;
}
void main()
{
vert_main();
}