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

16 lines
142 B
GLSL
Raw Normal View History

struct Test
{
int empty_struct_member;
};
2018-03-13 09:46:55 +00:00
void vert_main()
{
Test _14 = { 0 };
Test t = _14;
2018-03-13 09:46:55 +00:00
}
void main()
{
vert_main();
}