summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-17 03:21:03 -0300
committerGravatar ameerj2021-07-22 21:51:28 -0400
commit0a0818c0259b4f90f1f7bb37fcffbc1f194ca4d0 (patch)
tree809cb00a8188a76cb5585379d9982d9e52fcd0e6 /src/shader_recompiler/frontend/ir/opcodes.inc
parentspirv: Fix implicit lod type (diff)
downloadyuzu-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.inc5
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
20OPCODE(Barrier, Void, ) 20OPCODE(Barrier, Void, )
21OPCODE(MemoryBarrierWorkgroupLevel, Void, ) 21OPCODE(WorkgroupMemoryBarrier, Void, )
22OPCODE(MemoryBarrierDeviceLevel, Void, ) 22OPCODE(DeviceMemoryBarrier, Void, )
23OPCODE(MemoryBarrierSystemLevel, Void, )
24 23
25// Special operations 24// Special operations
26OPCODE(Prologue, Void, ) 25OPCODE(Prologue, Void, )