Fix image atomics
This commit is contained in:
parent
c77f3b90a9
commit
3360740250
1 changed files with 3 additions and 11 deletions
|
@ -255,19 +255,11 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
||||||
}
|
}
|
||||||
|
|
||||||
texCallBuilder.Append(coordsBuilder);
|
texCallBuilder.Append(coordsBuilder);
|
||||||
|
texCallBuilder.Append(')');
|
||||||
|
|
||||||
if (texOp.Inst == Instruction.ImageAtomic)
|
if (texOp.Inst == Instruction.ImageLoad)
|
||||||
{
|
{
|
||||||
// TODO: Finish atomic stuff
|
texCallBuilder.Append(GetMaskMultiDest(texOp.Index));
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
texCallBuilder.Append(')');
|
|
||||||
|
|
||||||
if (texOp.Inst == Instruction.ImageLoad)
|
|
||||||
{
|
|
||||||
texCallBuilder.Append(GetMaskMultiDest(texOp.Index));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return texCallBuilder.ToString();
|
return texCallBuilder.ToString();
|
||||||
|
|
Loading…
Reference in a new issue