From fb26e396336b74fd4ab4b0a398a9aca78a7d9d0c Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Sun, 28 Jul 2024 22:51:52 -0300 Subject: [PATCH] Update opcodes.inc --- src/shader_recompiler/ir/opcodes.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shader_recompiler/ir/opcodes.inc b/src/shader_recompiler/ir/opcodes.inc index 0b0e41be7..b5a101966 100644 --- a/src/shader_recompiler/ir/opcodes.inc +++ b/src/shader_recompiler/ir/opcodes.inc @@ -260,6 +260,8 @@ OPCODE(SMax32, U32, U32, OPCODE(UMax32, U32, U32, U32, ) OPCODE(SClamp32, U32, U32, U32, U32, ) OPCODE(UClamp32, U32, U32, U32, U32, ) +OPCODE(SLessThan, U1, U32, U32, ) +OPCODE(ULessThan, U1, U32, U32, ) OPCODE(SLessThan32, U1, U32, U32, ) OPCODE(SLessThan64, U1, U64, U64, ) OPCODE(ULessThan32, U1, U32, U32, ) @@ -326,3 +328,4 @@ OPCODE(ImageAtomicExchange32, U32, Opaq // Warp operations OPCODE(LaneId, U32, ) OPCODE(QuadShuffle, U32, U32, U32 ) +OPCODE(WarpId, U32, )