From 756d8bfa01843d35f1f696a8887458c955ff15a9 Mon Sep 17 00:00:00 2001 From: Stephen Miller <56742918+StevenMiller123@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:42:57 -0500 Subject: [PATCH] V_LOG_CLAMP_F32 (#4662) --- src/shader_recompiler/frontend/translate/vector_alu.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shader_recompiler/frontend/translate/vector_alu.cpp b/src/shader_recompiler/frontend/translate/vector_alu.cpp index 436bd65c6..a4bc6e558 100644 --- a/src/shader_recompiler/frontend/translate/vector_alu.cpp +++ b/src/shader_recompiler/frontend/translate/vector_alu.cpp @@ -166,6 +166,8 @@ void Translator::EmitVectorAlu(const GcnInst& inst) { return V_FLOOR_F32(inst); case Opcode::V_EXP_F32: return V_EXP_F32(inst); + case Opcode::V_LOG_CLAMP_F32: + return V_LOG_F32(inst); case Opcode::V_LOG_F32: return V_LOG_F32(inst); case Opcode::V_RCP_F32: