mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-12 10:37:06 +00:00
Increase texture cache limit to 6 GB
This commit is contained in:
parent
02a5f75fab
commit
2d36a23252
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
private const int MinCountForDeletion = 32;
|
||||
private const int MaxCapacity = 2048;
|
||||
private const ulong MinTextureSizeCapacity = 512 * 1024 * 1024;
|
||||
private const ulong MaxTextureSizeCapacity = 4UL * 1024 * 1024 * 1024;
|
||||
private const ulong MaxTextureSizeCapacity = 6UL * 1024 * 1024 * 1024;
|
||||
private const ulong DefaultTextureSizeCapacity = 1UL * 1024 * 1024 * 1024;
|
||||
private const float MemoryScaleFactor = 0.50f;
|
||||
private ulong _maxCacheMemoryUsage = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue