shader_recompiler: added V_TRUNC VOP1/3 (496)

This commit is contained in:
psucien 2024-06-16 23:39:45 +02:00
parent d3ab612bdc
commit 396812bab6
3 changed files with 9 additions and 0 deletions

View file

@ -657,6 +657,9 @@ void Translate(IR::Block* block, std::span<const GcnInst> inst_list, Info& info)
case Opcode::S_BFM_B32:
translator.S_BFM_B32(inst);
break;
case Opcode::V_TRUNC_F32:
translator.V_TRUNC_F32(inst);
break;
case Opcode::S_NOP:
case Opcode::S_CBRANCH_EXECZ:
case Opcode::S_CBRANCH_SCC0: