diff options
| author | 2021-04-17 03:21:03 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:28 -0400 | |
| commit | 0a0818c0259b4f90f1f7bb37fcffbc1f194ca4d0 (patch) | |
| tree | 809cb00a8188a76cb5585379d9982d9e52fcd0e6 /src/shader_recompiler/frontend/ir/opcodes.inc | |
| parent | spirv: Fix implicit lod type (diff) | |
| download | yuzu-0a0818c0259b4f90f1f7bb37fcffbc1f194ca4d0.tar.gz yuzu-0a0818c0259b4f90f1f7bb37fcffbc1f194ca4d0.tar.xz yuzu-0a0818c0259b4f90f1f7bb37fcffbc1f194ca4d0.zip | |
shader: Fix memory barriers
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 0748efa8d..1cfc2a943 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -18,9 +18,8 @@ OPCODE(DemoteToHelperInvocation, Void, Labe | |||
| 18 | 18 | ||
| 19 | // Barriers | 19 | // Barriers |
| 20 | OPCODE(Barrier, Void, ) | 20 | OPCODE(Barrier, Void, ) |
| 21 | OPCODE(MemoryBarrierWorkgroupLevel, Void, ) | 21 | OPCODE(WorkgroupMemoryBarrier, Void, ) |
| 22 | OPCODE(MemoryBarrierDeviceLevel, Void, ) | 22 | OPCODE(DeviceMemoryBarrier, Void, ) |
| 23 | OPCODE(MemoryBarrierSystemLevel, Void, ) | ||
| 24 | 23 | ||
| 25 | // Special operations | 24 | // Special operations |
| 26 | OPCODE(Prologue, Void, ) | 25 | OPCODE(Prologue, Void, ) |