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:
Unknown W. Brackets 2022-09-24 19:26:52 -07:00
parent ef99a27e9f
commit 1aa6841759

View file

@ -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;