diff options
| author | Yong He <yonghe@outlook.com> | 2024-02-05 22:36:02 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-05 22:36:02 -0800 |
| commit | 23c65b873f8002b74d60f61cacb3614da60e078d (patch) | |
| tree | 9629ffeed059cd67e70d5a98427922697ba46543 /tests/doc | |
| parent | af035fb6da2a19ccc647515e9b1edf35777f8c89 (diff) | |
Add per-buffer data layout control. (#3551)
* Add per-buffer data layout control.
Fixes #3534.
* Fixes.
* Robustness.
* Update test.
* Fix.
Diffstat (limited to 'tests/doc')
| -rw-r--r-- | tests/doc/doc.slang.expected | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/doc/doc.slang.expected b/tests/doc/doc.slang.expected index ed9892b33..1163e6485 100644 --- a/tests/doc/doc.slang.expected +++ b/tests/doc/doc.slang.expected @@ -120,7 +120,7 @@ void Hey::doAnotherThing(int a); # inputBuffer ``` -RWStructuredBuffer<int> inputBuffer +RWStructuredBuffer<int, DefaultDataLayout> inputBuffer ``` ## Description @@ -330,7 +330,7 @@ An enum # outputBuffer ``` -RWStructuredBuffer<int> outputBuffer +RWStructuredBuffer<int, DefaultDataLayout> outputBuffer ``` ## Description |
