This commit is contained in:
Samuliak 2024-05-16 16:54:54 +02:00 committed by Evan Husted
parent 22d3fa068d
commit 91d1bb6c08

View file

@ -130,7 +130,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl
{
var varType = storageBuffers.Type.Fields[0].Type & ~AggregateType.Array;
// Offset the binding by 15 to avoid clashing with the constant buffers
args = args.Append($"device {Declarations.GetVarTypeName(context, varType)} *{storageBuffers.Name} [[buffer({15 + storageBuffers.Binding})]]").ToArray();
args = args.Append($"device {Declarations.GetVarTypeName(context, varType)} *{storageBuffers.Name} [[buffer({storageBuffers.Binding + 15})]]").ToArray();
}
foreach (var texture in context.Properties.Textures.Values)