diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-04-12 03:48:15 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:27 -0400 |
commit | a6cef71cc0b03f929f1bc97152b302562f46bc53 (patch) | |
tree | b6be5bddb79c93233f6081a930634345c353dec2 /src/shader_recompiler/frontend/ir/opcodes.inc | |
parent | dd3432d357ce0bdf8bb295094c89bf659c939259 (diff) |
shader: Implement OUT
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
-rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index f700086822..0e487f1a78 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc @@ -25,6 +25,8 @@ OPCODE(MemoryBarrierSystemLevel, Void, // Special operations OPCODE(Prologue, Void, ) OPCODE(Epilogue, Void, ) +OPCODE(EmitVertex, Void, U32, ) +OPCODE(EndPrimitive, Void, U32, ) // Context getters/setters OPCODE(GetRegister, U32, Reg, ) |