glslang/Test/hlsl.nested-runtimeArray.frag
2023-02-02 16:33:32 -07:00

10 lines
96 B
GLSL

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