diff options
author | FernandoS27 <fsahmkow27@gmail.com> | 2021-04-02 19:27:30 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:26 -0400 |
commit | 655f7a570a10218ffb2ed175bb7f0b84530ccae0 (patch) | |
tree | bb95bc316718bd5c746a0b28084b3548a4aea222 /src/shader_recompiler/frontend/ir/opcodes.inc | |
parent | ecb30c907266921818d5b6b03e341028fa2ea082 (diff) |
shader: Implement MEMBAR
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
-rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 7023727752..d9e0d54711 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc @@ -16,6 +16,9 @@ OPCODE(Return, Void, OPCODE(Unreachable, Void, ) OPCODE(DemoteToHelperInvocation, Void, Label, ) +// Barriers +OPCODE(MemoryBarrier, Void, ) + // Special operations OPCODE(Prologue, Void, ) OPCODE(Epilogue, Void, ) |