override Equals for render pipeline hash

This commit is contained in:
Samuliak 2024-05-31 07:45:14 +02:00 committed by Isaac Marovitz
parent 1c5937c40b
commit bc5df02d7d
2 changed files with 111 additions and 14 deletions

View file

@ -11,9 +11,9 @@ namespace Ryujinx.Graphics.Metal
public const int MaxTextureBindings = MaxTexturesPerStage * MaxShaderStages;
public const int MaxColorAttachments = 8;
// TODO: Check this value
public const int MaxVertexAttributes = 16;
public const int MaxVertexAttributes = 31;
// TODO: Check this value
public const int MaxVertexLayouts = 16;
public const int MaxVertexLayouts = 31;
public const int MaxTextures = 31;
public const int MaxSamplers = 16;
}