diff options
| author | 2021-04-11 02:22:20 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:27 -0400 | |
| commit | 9280cd649a9c4cd53b929643377547db598bf5f0 (patch) | |
| tree | 7b8a12383db245b385271b2c5bf8e4d6b3ae5183 /src/shader_recompiler/frontend/ir | |
| parent | vk_rasterizer: Request outside render pass execution context for compute (diff) | |
| download | yuzu-9280cd649a9c4cd53b929643377547db598bf5f0.tar.gz yuzu-9280cd649a9c4cd53b929643377547db598bf5f0.tar.xz yuzu-9280cd649a9c4cd53b929643377547db598bf5f0.zip | |
shader: Move LaneId to the warp emission file and fix AMD
Diffstat (limited to 'src/shader_recompiler/frontend/ir')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 82c5b37ba..86ea02560 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -58,7 +58,6 @@ OPCODE(SetCFlag, Void, U1, | |||
| 58 | OPCODE(SetOFlag, Void, U1, ) | 58 | OPCODE(SetOFlag, Void, U1, ) |
| 59 | OPCODE(WorkgroupId, U32x3, ) | 59 | OPCODE(WorkgroupId, U32x3, ) |
| 60 | OPCODE(LocalInvocationId, U32x3, ) | 60 | OPCODE(LocalInvocationId, U32x3, ) |
| 61 | OPCODE(LaneId, U32, ) | ||
| 62 | 61 | ||
| 63 | // Undefined | 62 | // Undefined |
| 64 | OPCODE(UndefU1, U1, ) | 63 | OPCODE(UndefU1, U1, ) |
| @@ -419,6 +418,7 @@ OPCODE(ImageRead, U32x4, U32, | |||
| 419 | OPCODE(ImageWrite, Void, U32, Opaque, U32x4, ) | 418 | OPCODE(ImageWrite, Void, U32, Opaque, U32x4, ) |
| 420 | 419 | ||
| 421 | // Warp operations | 420 | // Warp operations |
| 421 | OPCODE(LaneId, U32, ) | ||
| 422 | OPCODE(VoteAll, U1, U1, ) | 422 | OPCODE(VoteAll, U1, U1, ) |
| 423 | OPCODE(VoteAny, U1, U1, ) | 423 | OPCODE(VoteAny, U1, U1, ) |
| 424 | OPCODE(VoteEqual, U1, U1, ) | 424 | OPCODE(VoteEqual, U1, U1, ) |