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

10 lines
96 B
GLSL

struct A {
float a[];
};
RWStructuredBuffer <A> B;
float main() {
return B[0].a[0];
}