xemu/subprojects/glslang/Test/hlsl.nested-runtimeArray.frag

10 lines
96 B
GLSL

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