summaryrefslogtreecommitdiff
path: root/tests/reflection/gh-55.glsl.expected
AgeCommit message (Collapse)Author
2024-12-21Fixed stage and result field names in json reflection (#5927)Stan
2017-07-12Add per-entry-point information to reflection JSON dumpsTim Foley
- This also adds reflection API for querying: - Entry point name - Entry point parameter list
2017-07-07Fix alignment computation for `std140` uniformsTim Foley
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.