diff --git a/bgfx.html b/bgfx.html index 101b1fac4..bffb7beee 100644 --- a/bgfx.html +++ b/bgfx.html @@ -1252,6 +1252,8 @@
Returns performance counters.
bgfx::frame is called. bgfx_get_stats. bgfx::allocTransform(Transform *_transform, uint16_t _num)ΒΆReserve _num matrices in internal matrix cache. Pointer returned can be modifed until bgfx::frame is called.
Reserve _num matrices in internal matrix cache.
bgfx::frame is called. bgfx_alloc_transform. Make reference to data to pass to bgfx. Unlike bgfx::alloc this call doesn’t allocate memory for data. It just copies pointer to data. You can pass ReleaseFn function pointer to release this memory after it’s consumed, or you must make sure data is available for at least 2 bgfx::frame calls. ReleaseFn function must be able to be called from any thread.
bgfx::frame calls. bgfx_make_ref, bgfx_make_ref_release.