diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp index 9bae89c10..30b570ce4 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.cpp | |||
| @@ -91,6 +91,10 @@ IR::U32 TranslatorVisitor::GetReg39(u64 insn) { | |||
| 91 | return X(reg.index); | 91 | return X(reg.index); |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | IR::F32 TranslatorVisitor::GetFloatReg8(u64 insn) { | ||
| 95 | return ir.BitCast<IR::F32>(GetReg8(insn)); | ||
| 96 | } | ||
| 97 | |||
| 94 | IR::F32 TranslatorVisitor::GetFloatReg20(u64 insn) { | 98 | IR::F32 TranslatorVisitor::GetFloatReg20(u64 insn) { |
| 95 | return ir.BitCast<IR::F32>(GetReg20(insn)); | 99 | return ir.BitCast<IR::F32>(GetReg20(insn)); |
| 96 | } | 100 | } |