mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
softgpu: Reduce memory usage on 32-bit.
This commit is contained in:
parent
e68b16af69
commit
a3f682fc5a
@ -216,7 +216,12 @@ public:
|
||||
}
|
||||
|
||||
protected:
|
||||
#if PPSSPP_ARCH(32BIT)
|
||||
// Use less memory and less address space. We're unlikely to have 32 cores on a 32-bit CPU.
|
||||
static constexpr int MAX_POSSIBLE_TASKS = 16;
|
||||
#else
|
||||
static constexpr int MAX_POSSIBLE_TASKS = 64;
|
||||
#endif
|
||||
// This is about 1MB of state data.
|
||||
static constexpr int QUEUED_STATES = 4096;
|
||||
// These are 1KB each, so half an MB.
|
||||
|
Loading…
Reference in New Issue
Block a user