From a4472b55260ed1ccbad0d191d11abd2330145140 Mon Sep 17 00:00:00 2001 From: FengChen Date: Sun, 30 Oct 2022 19:59:11 +0800 Subject: video_core: Fix few issues in Tess stage --- src/shader_recompiler/frontend/ir/ir_emitter.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/shader_recompiler/frontend/ir/ir_emitter.cpp') diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.cpp b/src/shader_recompiler/frontend/ir/ir_emitter.cpp index d4425f06d..0cdac0eff 100644 --- a/src/shader_recompiler/frontend/ir/ir_emitter.cpp +++ b/src/shader_recompiler/frontend/ir/ir_emitter.cpp @@ -362,6 +362,10 @@ U32 IREmitter::InvocationId() { return Inst(Opcode::InvocationId); } +U32 IREmitter::InvocationInfo() { + return Inst(Opcode::InvocationInfo); +} + U32 IREmitter::SampleId() { return Inst(Opcode::SampleId); } -- cgit v1.2.3