mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 03:18:55 +02:00
IndexCountGuardLimit tune
Signed-off-by: xbzk <xbzk@eden-emu.dev>
This commit is contained in:
parent
327c158b13
commit
a1201bf86a
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ namespace Tegra::Engines {
|
||||||
DrawManager::DrawManager(Maxwell3D* maxwell3d_) : maxwell3d(maxwell3d_) {}
|
DrawManager::DrawManager(Maxwell3D* maxwell3d_) : maxwell3d(maxwell3d_) {}
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
constexpr u32 IndexCountGuardLimit = 64u * 1024u;
|
constexpr u32 IndexCountGuardLimit = 1u * 1024u * 1024u;
|
||||||
constexpr u32 DrawOffsetGuardLimit = 256u * 1024u * 1024u;
|
constexpr u32 DrawOffsetGuardLimit = 256u * 1024u * 1024u;
|
||||||
constexpr size_t IndirectBufferSizeGuardLimit = 64ull * 1024ull * 1024ull;
|
constexpr size_t IndirectBufferSizeGuardLimit = 64ull * 1024ull * 1024ull;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue