diff options
| author | 2021-05-09 21:22:55 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:31 -0400 | |
| commit | 7703d65f234a3032adef795037320cd30ef28a3a (patch) | |
| tree | 7e3af9a0fe177f22b39ddf3b30158d68b24633b3 /src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | |
| parent | glasm: Add logical instructions on GLASM (diff) | |
| download | yuzu-7703d65f234a3032adef795037320cd30ef28a3a.tar.gz yuzu-7703d65f234a3032adef795037320cd30ef28a3a.tar.xz yuzu-7703d65f234a3032adef795037320cd30ef28a3a.zip | |
glasm: Add fp min/max insts and fix store for fp64 on GLASM
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h index 174eaaafa..5d94f21a6 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h +++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | |||
| @@ -221,9 +221,9 @@ void EmitFPAdd64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b); | |||
| 221 | void EmitFPFma16(EmitContext& ctx, IR::Inst& inst, Register a, Register b, Register c); | 221 | void EmitFPFma16(EmitContext& ctx, IR::Inst& inst, Register a, Register b, Register c); |
| 222 | void EmitFPFma32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b, ScalarF32 c); | 222 | void EmitFPFma32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b, ScalarF32 c); |
| 223 | void EmitFPFma64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b, ScalarF64 c); | 223 | void EmitFPFma64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b, ScalarF64 c); |
| 224 | void EmitFPMax32(EmitContext& ctx, ScalarF32 a, ScalarF32 b); | 224 | void EmitFPMax32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b); |
| 225 | void EmitFPMax64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b); | 225 | void EmitFPMax64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b); |
| 226 | void EmitFPMin32(EmitContext& ctx, ScalarF32 a, ScalarF32 b); | 226 | void EmitFPMin32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b); |
| 227 | void EmitFPMin64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b); | 227 | void EmitFPMin64(EmitContext& ctx, IR::Inst& inst, ScalarF64 a, ScalarF64 b); |
| 228 | void EmitFPMul16(EmitContext& ctx, IR::Inst& inst, Register a, Register b); | 228 | void EmitFPMul16(EmitContext& ctx, IR::Inst& inst, Register a, Register b); |
| 229 | void EmitFPMul32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b); | 229 | void EmitFPMul32(EmitContext& ctx, IR::Inst& inst, ScalarF32 a, ScalarF32 b); |