mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
16 lines
142 B
GLSL
16 lines
142 B
GLSL
struct Test
|
|
{
|
|
int empty_struct_member;
|
|
};
|
|
|
|
void vert_main()
|
|
{
|
|
Test _14 = { 0 };
|
|
Test t = _14;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
vert_main();
|
|
}
|