shader_recompiler/frontend: implement V_MIN3_U32

This commit is contained in:
Daniel R. 2024-11-21 19:52:48 +01:00
parent e968b1c23f
commit 6904764aab
No known key found for this signature in database
GPG key ID: B8ADC8F57BA18DBA
2 changed files with 10 additions and 0 deletions

View file

@ -221,6 +221,7 @@ public:
void V_FMA_F64(const GcnInst& inst);
void V_MIN3_F32(const GcnInst& inst);
void V_MIN3_I32(const GcnInst& inst);
void V_MIN3_U32(const GcnInst& inst);
void V_MAX3_F32(const GcnInst& inst);
void V_MAX3_U32(bool is_signed, const GcnInst& inst);
void V_MED3_F32(const GcnInst& inst);