Files
Lucina3DS/externals/glslang/Test/hlsl.multiReturn.frag
2025-02-06 22:24:29 +08:00

20 lines
162 B
GLSL

struct S {
float f;
float3 v;
float3x3 m;
};
cbuffer bufName {
S s;
};
S foo()
{
return s;
}
void main()
{
foo();
}