mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-21 17:20:52 -05:00
Image Constant Fixes
Allows Mario Party Superstars to boot
This commit is contained in:
committed by
Evan Husted
parent
68146fa285
commit
341e4e5fb1
@@ -7,9 +7,12 @@ namespace Ryujinx.Graphics.Metal
|
||||
public const int MaxUniformBuffersPerStage = 18;
|
||||
public const int MaxStorageBuffersPerStage = 16;
|
||||
public const int MaxTexturesPerStage = 64;
|
||||
public const int MaxImagesPerStage = 16;
|
||||
|
||||
public const int MaxUniformBufferBindings = MaxUniformBuffersPerStage * MaxShaderStages;
|
||||
public const int MaxStorageBufferBindings = MaxStorageBuffersPerStage * MaxShaderStages;
|
||||
public const int MaxTextureBindings = MaxTexturesPerStage * MaxShaderStages;
|
||||
public const int MaxImageBindings = MaxImagesPerStage * MaxShaderStages;
|
||||
public const int MaxColorAttachments = 8;
|
||||
public const int MaxViewports = 16;
|
||||
// TODO: Check this value
|
||||
|
||||
Reference in New Issue
Block a user