glslang/Test/hlsl.structStructName.frag
2018-08-07 03:16:20 +09:00

8 lines
76 B
GLSL

struct S { int s; };
int main()
{
struct S t;
return t.s;
}