summaryrefslogtreecommitdiffstats
path: root/tests/reflection/std430-layout.glsl.expected
Commit message (Collapse)AuthorAge
* Fixed stage and result field names in json reflection (#5927)Stan2024-12-21
|
* Add reflection API to get type name (#263)Tim Foley2017-11-07
| | | | | This is currently only useful for `struct` types. I implemented a special-case exception so that the auto-generated `struct` types used for `cbuffer` members don't show their internal name. I did *not* implement any logic to avoid returning the name `vector` for a vector type, etc., since they are all `DeclRefType`s and it seemed easiest to just let the user access information they can't really use.
* Add per-entry-point information to reflection JSON dumpsTim Foley2017-07-12
| | | | | | - This also adds reflection API for querying: - Entry point name - Entry point parameter list
* Fix support for `std430` layoutTim Foley2017-07-07
Fixes #57 There were a bunch of issues in how `std430` was being implemented, largely due to just stubbing it in without any test cases. This commit adds a reasonably good test case to ensure that we've got things basically working.