This commit is contained in:
Maciej 2023-02-02 09:59:24 +01:00 committed by arcady-lunarg
parent 95ad533eb0
commit d604f26843
3 changed files with 129 additions and 0 deletions

View file

@ -0,0 +1,9 @@
struct A {
float a[];
};
RWStructuredBuffer <A> B;
float main() {
return B[0].a[0];
}