Fix Pack and UnpackHalf2x16

This commit is contained in:
Isaac Marovitz 2024-05-30 02:14:56 +01:00 committed by Isaac Marovitz
parent f7e97a30af
commit 970914e2b4
3 changed files with 31 additions and 2 deletions

View file

@ -145,6 +145,10 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
return TextureQuerySamples(context, operation);
case Instruction.TextureQuerySize:
return TextureQuerySize(context, operation);
case Instruction.PackHalf2x16:
return PackHalf2x16(context, operation);
case Instruction.UnpackHalf2x16:
return UnpackHalf2x16(context, operation);
case Instruction.VectorExtract:
return VectorExtract(context, operation);
case Instruction.VoteAllEqual: