From 634ec96b52bcc2a13ad3485739b1947238eaafc0 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Wed, 18 Oct 2023 00:01:51 +0200 Subject: [PATCH] vkd3d-shader: Add a missing entry to instruction debug print helper. Signed-off-by: Nikolay Sivov --- libs/vkd3d-shader/hlsl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/vkd3d-shader/hlsl.c b/libs/vkd3d-shader/hlsl.c index e036f05a..c3a7a604 100644 --- a/libs/vkd3d-shader/hlsl.c +++ b/libs/vkd3d-shader/hlsl.c @@ -2572,6 +2572,7 @@ const char *debug_hlsl_expr_op(enum hlsl_ir_expr_op op) [HLSL_OP1_DSY_COARSE] = "dsy_coarse", [HLSL_OP1_DSY_FINE] = "dsy_fine", [HLSL_OP1_EXP2] = "exp2", + [HLSL_OP1_FLOOR] = "floor", [HLSL_OP1_FRACT] = "fract", [HLSL_OP1_LOG2] = "log2", [HLSL_OP1_LOGIC_NOT] = "!",