Shaders: Implemented the FMNMX shader instruction.
This commit is contained in:
parent
1b5c02fc37
commit
8440cef223
2 changed files with 26 additions and 6 deletions
|
@ -193,6 +193,11 @@ union Instruction {
|
|||
BitField<50, 1, u64> abs_d;
|
||||
BitField<56, 1, u64> negate_imm;
|
||||
|
||||
union {
|
||||
BitField<39, 3, u64> pred;
|
||||
BitField<42, 1, u64> negate_pred;
|
||||
} fmnmx;
|
||||
|
||||
float GetImm20_19() const {
|
||||
float result{};
|
||||
u32 imm{static_cast<u32>(imm20_19)};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue