From 8aacee8eae8c43621ebbbaffe026f1fdf4bee90e Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Wed, 4 Jun 2025 11:17:38 +0200 Subject: [PATCH] vkd3d-shader/fx: Add a few missing fxlc opcode names. Signed-off-by: Nikolay Sivov --- libs/vkd3d-shader/fx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/vkd3d-shader/fx.c b/libs/vkd3d-shader/fx.c index 90da8048b..e6bb74936 100644 --- a/libs/vkd3d-shader/fx.c +++ b/libs/vkd3d-shader/fx.c @@ -4718,6 +4718,8 @@ fx_4_fxlc_opcodes[] = { 0x13a, "ceil" }, { 0x200, "min" }, { 0x201, "max" }, + { 0x202, "lt" }, + { 0x203, "ge" }, { 0x204, "add" }, { 0x205, "mul" }, { 0x206, "atan2" },