summaryrefslogtreecommitdiffstats
path: root/tests/reflection/mix-explicit-and-implicit-spaces.slang
Commit message (Collapse)AuthorAge
* Support for querying which parameters are used in emitted code (#2239)Alexey Panteleev2022-05-18
| | | See https://github.com/shader-slang/slang/issues/2213
* Fix a bug in handling explicit register space bindings (#1175)Tim Foley2020-01-23
The logic for handling explicit `space`/`set` bindings on shader parameters for parameter blocks was not correctly marking the `space`/`set` that gets grabbed as used, and as a result it was possible for another parameter block that relies on implicit assignment to end up with a conflicting space. This change fixes the original oversight, and adds a test case to prevent against regression.