mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Merge branch 'dev'
This commit is contained in:
commit
7e55edf5c1
2 changed files with 2 additions and 2 deletions
|
@ -826,7 +826,7 @@ namespace bgfx
|
|||
uint32_t reserve(uint16_t* _num)
|
||||
{
|
||||
uint32_t num = *_num;
|
||||
BX_CHECK(m_num+num < BGFX_CONFIG_MAX_MATRIX_CACHE, "Matrix cache overflow. %d (max: %d)", m_num+num, BGFX_CONFIG_MAX_MATRIX_CACHE);
|
||||
BX_WARN(m_num+num < BGFX_CONFIG_MAX_MATRIX_CACHE, "Matrix cache overflow. %d (max: %d)", m_num+num, BGFX_CONFIG_MAX_MATRIX_CACHE);
|
||||
num = bx::uint32_min(num, BGFX_CONFIG_MAX_MATRIX_CACHE-m_num);
|
||||
uint32_t first = m_num;
|
||||
m_num += num;
|
||||
|
|
|
@ -195,7 +195,7 @@
|
|||
#endif // BGFX_CONFIG_MAX_DRAW_CALLS
|
||||
|
||||
#ifndef BGFX_CONFIG_MAX_BLIT_ITEMS
|
||||
# define BGFX_CONFIG_MAX_BLIT_ITEMS 256
|
||||
# define BGFX_CONFIG_MAX_BLIT_ITEMS (1<<10)
|
||||
#endif // BGFX_CONFIG_MAX_BLIT_ITEMS
|
||||
|
||||
#ifndef BGFX_CONFIG_MAX_MATRIX_CACHE
|
||||
|
|
Loading…
Reference in a new issue