Files
archived-glslang/Test/hlsl.nested-runtimeArray.frag
2023-12-11 20:03:15 +00:00

10 lines
96 B
GLSL

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