Instruction.Barrier

Whoops
This commit is contained in:
Isaac Marovitz 2024-06-21 10:31:21 +01:00
commit bfef240d22
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1

View file

@ -110,7 +110,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
switch (inst & Instruction.Mask)
{
case Instruction.Barrier:
return "|| BARRIER ||";
return "threadgroup_barrier(mem_flags::mem_threadgroup)";
case Instruction.Call:
return Call(context, operation);
case Instruction.FSIBegin: