mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 08:20:47 -07:00
Implement BFI, BRK, FLO, FSWZADD, PBK, SHFL and TXD shader instructions, misc. fixes
This commit is contained in:
@ -241,7 +241,7 @@ namespace Ryujinx.Graphics.Shader.Decoders
|
||||
|
||||
private static bool IsBranch(OpCode opCode)
|
||||
{
|
||||
return (opCode is OpCodeBranch && opCode.Emitter != InstEmit.Ssy) ||
|
||||
return (opCode is OpCodeBranch opBranch && !opBranch.PushTarget) ||
|
||||
opCode is OpCodeSync ||
|
||||
opCode is OpCodeExit;
|
||||
}
|
||||
|
Reference in New Issue
Block a user