summaryrefslogtreecommitdiffstats
path: root/tests/compute/buffer-type-splitting.slang.expected.txt
Commit message (Collapse)AuthorAge
* Implement type splitting for raw buffers (#393)Tim Foley2018-02-01
* Fix render-test to handle raw buffers I don't know if this fix will work for UAVs that are neither structured nor raw, but it fixes the code that currently only really works if every UAV is structured (since it doesn't set a format). * Make type legalization consider raw buffer types The type layout logic was already handling these, but the type splitting logic in legalization was failing to split structure types that contain, e.g., `RWByteAddressBuffer`. A compute test case has been added to confirm the fix.