summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc
index ffd0cc690..702372775 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.inc
+++ b/src/shader_recompiler/frontend/ir/opcodes.inc
@@ -46,10 +46,18 @@ OPCODE(GetZFlag, U1, Void
46OPCODE(GetSFlag, U1, Void, ) 46OPCODE(GetSFlag, U1, Void, )
47OPCODE(GetCFlag, U1, Void, ) 47OPCODE(GetCFlag, U1, Void, )
48OPCODE(GetOFlag, U1, Void, ) 48OPCODE(GetOFlag, U1, Void, )
49OPCODE(GetFCSMFlag, U1, Void, )
50OPCODE(GetTAFlag, U1, Void, )
51OPCODE(GetTRFlag, U1, Void, )
52OPCODE(GetMXFlag, U1, Void, )
49OPCODE(SetZFlag, Void, U1, ) 53OPCODE(SetZFlag, Void, U1, )
50OPCODE(SetSFlag, Void, U1, ) 54OPCODE(SetSFlag, Void, U1, )
51OPCODE(SetCFlag, Void, U1, ) 55OPCODE(SetCFlag, Void, U1, )
52OPCODE(SetOFlag, Void, U1, ) 56OPCODE(SetOFlag, Void, U1, )
57OPCODE(SetFCSMFlag, Void, U1, )
58OPCODE(SetTAFlag, Void, U1, )
59OPCODE(SetTRFlag, Void, U1, )
60OPCODE(SetMXFlag, Void, U1, )
53OPCODE(WorkgroupId, U32x3, ) 61OPCODE(WorkgroupId, U32x3, )
54OPCODE(LocalInvocationId, U32x3, ) 62OPCODE(LocalInvocationId, U32x3, )
55 63