mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
softgpu: Increase queued prims.
We made them smaller, so we can queue more of them in the same space. Helps a little bit.
This commit is contained in:
parent
ef99a27e9f
commit
1aa6841759
1 changed files with 2 additions and 2 deletions
|
@ -228,8 +228,8 @@ protected:
|
|||
static constexpr int QUEUED_STATES = 4096;
|
||||
// These are 1KB each, so half an MB.
|
||||
static constexpr int QUEUED_CLUTS = 512;
|
||||
// About 320 KB, but we have usually 16 or less of them, so 5 MB - 20 MB.
|
||||
static constexpr int QUEUED_PRIMS = 1024;
|
||||
// About 360 KB, but we have usually 16 or less of them, so 5 MB - 22 MB.
|
||||
static constexpr int QUEUED_PRIMS = 2048;
|
||||
|
||||
typedef BinQueue<Rasterizer::RasterizerState, QUEUED_STATES> BinStateQueue;
|
||||
typedef BinQueue<BinClut, QUEUED_CLUTS> BinClutQueue;
|
||||
|
|
Loading…
Add table
Reference in a new issue