Add test
This commit is contained in:
parent
95ad533eb0
commit
d604f26843
3 changed files with 129 additions and 0 deletions
9
Test/hlsl.nested-runtimeArray.frag
Normal file
9
Test/hlsl.nested-runtimeArray.frag
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
struct A {
|
||||
float a[];
|
||||
};
|
||||
|
||||
RWStructuredBuffer <A> B;
|
||||
|
||||
float main() {
|
||||
return B[0].a[0];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue