Fix Non-Float Textures + Image Read + FSI Buffers

Fixes Mario Party Superstars
This commit is contained in:
Isaac Marovitz 2024-08-01 14:23:56 +01:00 committed by Isaac Marovitz
parent d5e19a70bd
commit c77f3b90a9
3 changed files with 13 additions and 7 deletions

View file

@ -251,10 +251,9 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
_ => string.Empty,
};
texCallBuilder.Append($"{prefix}4({string.Join(", ", cElems)})");
texCallBuilder.Append($"{prefix}4({string.Join(", ", cElems)}), ");
}
texCallBuilder.Append(", ");
texCallBuilder.Append(coordsBuilder);
if (texOp.Inst == Instruction.ImageAtomic)