increase span pool size so to fit bigger arrays

This commit is contained in:
LotP1 2025-11-20 16:26:05 +01:00
parent 2cd052157e
commit 3d7f302a8a

View File

@ -22,7 +22,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading
/// </summary>
public class ThreadedRenderer : IRenderer
{
private const int SpanPoolBytes = 4 * 1024 * 1024;
private const int SpanPoolBytes = 8 * 1024 * 1024;
private const int MaxRefsPerCommand = 2;
private const int QueueCount = 10000;