diff options
| author | 2021-02-21 17:50:14 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | 704c6f353f68745168902c6c66c04bb730bd30e6 (patch) | |
| tree | 71ed9654de41b5828ae2613167537d39499d2f3b /src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |
| parent | shader: Add denorm flush support (diff) | |
| download | yuzu-704c6f353f68745168902c6c66c04bb730bd30e6.tar.gz yuzu-704c6f353f68745168902c6c66c04bb730bd30e6.tar.xz yuzu-704c6f353f68745168902c6c66c04bb730bd30e6.zip | |
shader: Rename, implement FADD.SAT and P2R (imm)
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/impl.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h index 27aba2cf8..4d4cf2ebf 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |||
| @@ -304,13 +304,14 @@ public: | |||
| 304 | [[nodiscard]] IR::U32 GetReg8(u64 insn); | 304 | [[nodiscard]] IR::U32 GetReg8(u64 insn); |
| 305 | [[nodiscard]] IR::U32 GetReg20(u64 insn); | 305 | [[nodiscard]] IR::U32 GetReg20(u64 insn); |
| 306 | [[nodiscard]] IR::U32 GetReg39(u64 insn); | 306 | [[nodiscard]] IR::U32 GetReg39(u64 insn); |
| 307 | [[nodiscard]] IR::F32 GetReg20F(u64 insn); | 307 | [[nodiscard]] IR::F32 GetRegFloat20(u64 insn); |
| 308 | [[nodiscard]] IR::F32 GetReg39F(u64 insn); | 308 | [[nodiscard]] IR::F32 GetRegFloat39(u64 insn); |
| 309 | 309 | ||
| 310 | [[nodiscard]] IR::U32 GetCbuf(u64 insn); | 310 | [[nodiscard]] IR::U32 GetCbuf(u64 insn); |
| 311 | [[nodiscard]] IR::F32 GetCbufF(u64 insn); | 311 | [[nodiscard]] IR::F32 GetFloatCbuf(u64 insn); |
| 312 | 312 | ||
| 313 | [[nodiscard]] IR::U32 GetImm20(u64 insn); | 313 | [[nodiscard]] IR::U32 GetImm20(u64 insn); |
| 314 | [[nodiscard]] IR::F32 GetFloatImm20(u64 insn); | ||
| 314 | 315 | ||
| 315 | [[nodiscard]] IR::U32 GetImm32(u64 insn); | 316 | [[nodiscard]] IR::U32 GetImm32(u64 insn); |
| 316 | 317 | ||