bkaradzic / bgfx

Cross-platform, graphics API agnostic, "Bring Your Own Engine/Framework" style rendering library.
https://bkaradzic.github.io/bgfx/overview.html
BSD 2-Clause "Simplified" License
14.59k stars 1.92k forks source link

Fix `dispatch_indirect` still using `uint16_t` in bgfx.idl #3268

Closed ichordev closed 3 months ago

ichordev commented 3 months ago

When bgfx's indirect draw APIs were changed to using 32-bit arguments, the C++ equivalent of bgfx_dispatch_indirect was changed to using uint32_t for start/num. However, the bgfx_dispatch_indirect in bgfx.idl was left unchanged. This PR fixes that.