Fix image atomics

This commit is contained in:
Isaac Marovitz 2024-08-01 14:39:11 +01:00
parent 5dc244ae68
commit 4848335975
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 3 additions and 11 deletions

View File

@ -255,19 +255,11 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
}
texCallBuilder.Append(coordsBuilder);
texCallBuilder.Append(')');
if (texOp.Inst == Instruction.ImageAtomic)
if (texOp.Inst == Instruction.ImageLoad)
{
// TODO: Finish atomic stuff
}
else
{
texCallBuilder.Append(')');
if (texOp.Inst == Instruction.ImageLoad)
{
texCallBuilder.Append(GetMaskMultiDest(texOp.Index));
}
texCallBuilder.Append(GetMaskMultiDest(texOp.Index));
}
return texCallBuilder.ToString();