Closed ichordev closed 7 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.
bgfx_dispatch_indirect
uint32_t
start
num
When bgfx's indirect draw APIs were changed to using 32-bit arguments, the C++ equivalent of
bgfx_dispatch_indirect
was changed to usinguint32_t
forstart
/num
. However, thebgfx_dispatch_indirect
in bgfx.idl was left unchanged. This PR fixes that.