shader_bytecode: Implement other variants of FMNMX.

This commit is contained in:
bunnei 2018-05-24 19:37:18 -04:00
parent b16e5c6a81
commit ee53688ca7
2 changed files with 10 additions and 4 deletions

View file

@ -775,7 +775,9 @@ private:
}
break;
}
case OpCode::Id::FMNMX: {
case OpCode::Id::FMNMX_C:
case OpCode::Id::FMNMX_R:
case OpCode::Id::FMNMX_IMM: {
std::string condition =
GetPredicateCondition(instr.alu.fmnmx.pred, instr.alu.fmnmx.negate_pred != 0);
std::string parameters = op_a + ',' + op_b;