implement pipeline cache

This commit is contained in:
Samuliak 2024-05-20 17:28:00 +02:00 committed by Isaac Marovitz
parent f2490347af
commit bab9542020
4 changed files with 191 additions and 12 deletions

View file

@ -9,5 +9,10 @@ namespace Ryujinx.Graphics.Metal
public const int MaxTexturesPerStage = 64;
public const int MaxCommandBuffersPerQueue = 16;
public const int MaxTextureBindings = MaxTexturesPerStage * MaxShaderStages;
public const int MaxColorAttachments = 8;
// TODO: Check this value
public const int MaxVertexAttributes = 16;
// TODO: Check this value
public const int MaxVertexLayouts = 16;
}
}