diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 82b04f37c..5dc65f2df 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -21,9 +21,9 @@ OPCODE(GetPred, U1, Pred | |||
| 21 | OPCODE(SetPred, Void, Pred, U1, ) | 21 | OPCODE(SetPred, Void, Pred, U1, ) |
| 22 | OPCODE(GetCbuf, U32, U32, U32, ) | 22 | OPCODE(GetCbuf, U32, U32, U32, ) |
| 23 | OPCODE(GetAttribute, U32, Attribute, ) | 23 | OPCODE(GetAttribute, U32, Attribute, ) |
| 24 | OPCODE(SetAttribute, U32, Attribute, ) | 24 | OPCODE(SetAttribute, Void, Attribute, U32, ) |
| 25 | OPCODE(GetAttributeIndexed, U32, U32, ) | 25 | OPCODE(GetAttributeIndexed, U32, U32, ) |
| 26 | OPCODE(SetAttributeIndexed, U32, U32, ) | 26 | OPCODE(SetAttributeIndexed, Void, U32, U32, ) |
| 27 | OPCODE(GetZFlag, U1, Void, ) | 27 | OPCODE(GetZFlag, U1, Void, ) |
| 28 | OPCODE(GetSFlag, U1, Void, ) | 28 | OPCODE(GetSFlag, U1, Void, ) |
| 29 | OPCODE(GetCFlag, U1, Void, ) | 29 | OPCODE(GetCFlag, U1, Void, ) |
| @@ -32,12 +32,8 @@ OPCODE(SetZFlag, Void, U1, | |||
| 32 | OPCODE(SetSFlag, Void, U1, ) | 32 | OPCODE(SetSFlag, Void, U1, ) |
| 33 | OPCODE(SetCFlag, Void, U1, ) | 33 | OPCODE(SetCFlag, Void, U1, ) |
| 34 | OPCODE(SetOFlag, Void, U1, ) | 34 | OPCODE(SetOFlag, Void, U1, ) |
| 35 | OPCODE(WorkgroupIdX, U32, ) | 35 | OPCODE(WorkgroupId, U32x3, ) |
| 36 | OPCODE(WorkgroupIdY, U32, ) | 36 | OPCODE(LocalInvocationId, U32x3, ) |
| 37 | OPCODE(WorkgroupIdZ, U32, ) | ||
| 38 | OPCODE(LocalInvocationIdX, U32, ) | ||
| 39 | OPCODE(LocalInvocationIdY, U32, ) | ||
| 40 | OPCODE(LocalInvocationIdZ, U32, ) | ||
| 41 | 37 | ||
| 42 | // Undefined | 38 | // Undefined |
| 43 | OPCODE(Undef1, U1, ) | 39 | OPCODE(Undef1, U1, ) |