summaryrefslogtreecommitdiffstats
path: root/tests/reflection/gh-55.glsl.expected
Commit message (Collapse)AuthorAge
* Fixed stage and result field names in json reflection (#5927)Stan2024-12-21
|
* 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 alignment computation for `std140` uniformsTim Foley2017-07-07
Fixes #55 I was incorrectly computing alignment as `elementSize * elementAlignment`, rounded up to a power of two (which works out to be `elementSize` squared), when I should have been using `elementSize * elementCount`, rounded up to a power of two.