mirror of https://github.com/bkaradzic/bgfx
Fixed matrix cache size.
This commit is contained in:
parent
4d30bd201e
commit
15206dc5a5
|
@ -257,7 +257,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
|
|||
bgfx::reset(width, height, reset);
|
||||
|
||||
const bgfx::Caps* caps = bgfx::getCaps();
|
||||
maxDim = (int32_t)powf(caps->maxDrawCalls, 1.0/3.0);
|
||||
maxDim = (int32_t)powf(float(caps->maxDrawCalls), 1.0f/3.0f);
|
||||
|
||||
// Enable debug text.
|
||||
bgfx::setDebug(debug);
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
#endif // BGFX_CONFIG_MAX_DRAW_CALLS
|
||||
|
||||
#ifndef BGFX_CONFIG_MAX_MATRIX_CACHE
|
||||
# define BGFX_CONFIG_MAX_MATRIX_CACHE (64<<10)
|
||||
# define BGFX_CONFIG_MAX_MATRIX_CACHE (BGFX_CONFIG_MAX_DRAW_CALLS+1)
|
||||
#endif // BGFX_CONFIG_MAX_MATRIX_CACHE
|
||||
|
||||
#ifndef BGFX_CONFIG_MAX_RECT_CACHE
|
||||
|
|
Loading…
Reference in New Issue