diff --git a/src/shader_recompiler/frontend/translate/translate.h b/src/shader_recompiler/frontend/translate/translate.h index d2053b765..63f03bdbc 100644 --- a/src/shader_recompiler/frontend/translate/translate.h +++ b/src/shader_recompiler/frontend/translate/translate.h @@ -138,9 +138,14 @@ public: void V_FLOOR_F32(const GcnInst& inst); void V_SUB_F32(const GcnInst& inst); void V_RCP_F32(const GcnInst& inst); + void V_RCP_F64(const GcnInst& inst); void V_FMA_F32(const GcnInst& inst); + void V_FMA_F64(const GcnInst& inst); void V_CMP_F32(ConditionOp op, bool set_exec, const GcnInst& inst); void V_MAX_F32(const GcnInst& inst, bool is_legacy = false); + void V_ADD_F64(const GcnInst& inst); + void V_MUL_F64(const GcnInst& inst); + void V_MIN_F64(const GcnInst& inst); void V_MAX_F64(const GcnInst& inst); void V_MAX_U32(bool is_signed, const GcnInst& inst); void V_RSQ_F32(const GcnInst& inst);