From 1aa684175962d83a5674def986378c33c19e49f9 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 24 Sep 2022 19:26:52 -0700 Subject: [PATCH] softgpu: Increase queued prims. We made them smaller, so we can queue more of them in the same space. Helps a little bit. --- GPU/Software/BinManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GPU/Software/BinManager.h b/GPU/Software/BinManager.h index 15c09bccf7..d651dfe577 100644 --- a/GPU/Software/BinManager.h +++ b/GPU/Software/BinManager.h @@ -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 BinStateQueue; typedef BinQueue BinClutQueue;