diff options
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h index a128f9ac4..54e7fab3c 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h +++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | |||
| @@ -527,12 +527,12 @@ void EmitBoundImageWrite(EmitContext&); | |||
| 527 | void EmitImageSampleImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 527 | void EmitImageSampleImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 528 | const IR::Value& coord, Register bias_lc, const IR::Value& offset); | 528 | const IR::Value& coord, Register bias_lc, const IR::Value& offset); |
| 529 | void EmitImageSampleExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 529 | void EmitImageSampleExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 530 | Register coord, Register lod_lc, const IR::Value& offset); | 530 | const IR::Value& coord, ScalarF32 lod, const IR::Value& offset); |
| 531 | void EmitImageSampleDrefImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 531 | void EmitImageSampleDrefImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 532 | Register coord, Register dref, Register bias_lc, | 532 | const IR::Value& coord, ScalarF32 dref, Register bias_lc, |
| 533 | const IR::Value& offset); | 533 | const IR::Value& offset); |
| 534 | void EmitImageSampleDrefExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 534 | void EmitImageSampleDrefExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 535 | Register coord, Register dref, Register lod_lc, | 535 | const IR::Value& coord, ScalarF32 dref, ScalarF32 lod, |
| 536 | const IR::Value& offset); | 536 | const IR::Value& offset); |
| 537 | void EmitImageGather(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord, | 537 | void EmitImageGather(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord, |
| 538 | const IR::Value& offset, const IR::Value& offset2); | 538 | const IR::Value& offset, const IR::Value& offset2); |