From 586b2b5a7947a91a1ff676b136da920bc411df8c Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Thu, 12 Jun 2025 00:20:14 +0200 Subject: [PATCH] vkd3d-shader/fx: Add the "noise" opcode name. 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 91f7db39a..36eefc1e5 100644 --- a/libs/vkd3d-shader/fx.c +++ b/libs/vkd3d-shader/fx.c @@ -4762,7 +4762,9 @@ fxlc_opcodes[] = { 0x236, "ushr" }, { 0x301, "movc" }, { 0x500, "dot" }, + { 0x502, "noise" }, { 0x70e, "d3ds_dotswiz" }, + { 0x711, "d3ds_noiseswiz" }, }; static const char *get_fxlc_opcode_name(uint32_t opcode)