mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-18 04:57:56 -05:00
shader_bytecode: Implement other variants of FMNMX.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user