diff options
| author | 2021-03-20 05:04:12 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:23 -0400 | |
| commit | f91859efd259995806c2944f7941b105b58300d3 (patch) | |
| tree | 489e587bcac6c0833c02378a106222c4db107c14 /src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |
| parent | shader: Implement ISCADD (imm) (diff) | |
| download | yuzu-f91859efd259995806c2944f7941b105b58300d3.tar.gz yuzu-f91859efd259995806c2944f7941b105b58300d3.tar.xz yuzu-f91859efd259995806c2944f7941b105b58300d3.zip | |
shader: Implement I2F
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/impl.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h index ed81d9c36..cb66cca25 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |||
| @@ -356,10 +356,12 @@ public: | |||
| 356 | [[nodiscard]] IR::U32 GetCbuf(u64 insn); | 356 | [[nodiscard]] IR::U32 GetCbuf(u64 insn); |
| 357 | [[nodiscard]] IR::F32 GetFloatCbuf(u64 insn); | 357 | [[nodiscard]] IR::F32 GetFloatCbuf(u64 insn); |
| 358 | [[nodiscard]] IR::F64 GetDoubleCbuf(u64 insn); | 358 | [[nodiscard]] IR::F64 GetDoubleCbuf(u64 insn); |
| 359 | [[nodiscard]] IR::U64 GetPackedCbuf(u64 insn); | ||
| 359 | 360 | ||
| 360 | [[nodiscard]] IR::U32 GetImm20(u64 insn); | 361 | [[nodiscard]] IR::U32 GetImm20(u64 insn); |
| 361 | [[nodiscard]] IR::F32 GetFloatImm20(u64 insn); | 362 | [[nodiscard]] IR::F32 GetFloatImm20(u64 insn); |
| 362 | [[nodiscard]] IR::F64 GetDoubleImm20(u64 insn); | 363 | [[nodiscard]] IR::F64 GetDoubleImm20(u64 insn); |
| 364 | [[nodiscard]] IR::U64 GetPackedImm20(u64 insn); | ||
| 363 | 365 | ||
| 364 | [[nodiscard]] IR::U32 GetImm32(u64 insn); | 366 | [[nodiscard]] IR::U32 GetImm32(u64 insn); |
| 365 | [[nodiscard]] IR::F32 GetFloatImm32(u64 insn); | 367 | [[nodiscard]] IR::F32 GetFloatImm32(u64 insn); |