summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-20 20:58:39 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:32 +0200
commit0a54291c9c750d89feacef0644959326b9612b64 (patch)
tree853e53b29e8287d3b232baf80f928e255c18f1d2 /src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
parentglasm: Implement ImageWrite (diff)
downloadyuzu-0a54291c9c750d89feacef0644959326b9612b64.tar
yuzu-0a54291c9c750d89feacef0644959326b9612b64.tar.gz
yuzu-0a54291c9c750d89feacef0644959326b9612b64.tar.bz2
yuzu-0a54291c9c750d89feacef0644959326b9612b64.tar.lz
yuzu-0a54291c9c750d89feacef0644959326b9612b64.tar.xz
yuzu-0a54291c9c750d89feacef0644959326b9612b64.tar.zst
yuzu-0a54291c9c750d89feacef0644959326b9612b64.zip
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm_instructions.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
index 0ce00db67..22d427817 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
+++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
@@ -533,11 +533,11 @@ void EmitImageSampleImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Valu
void EmitImageSampleExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
const IR::Value& coord, ScalarF32 lod, const IR::Value& offset);
void EmitImageSampleDrefImplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- const IR::Value& coord, ScalarF32 dref, Register bias_lc,
- const IR::Value& offset);
+ const IR::Value& coord, const IR::Value& dref,
+ const IR::Value& bias_lc, const IR::Value& offset);
void EmitImageSampleDrefExplicitLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- const IR::Value& coord, ScalarF32 dref, ScalarF32 lod,
- const IR::Value& offset);
+ const IR::Value& coord, const IR::Value& dref,
+ const IR::Value& lod, const IR::Value& offset);
void EmitImageGather(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
const IR::Value& coord, const IR::Value& offset, const IR::Value& offset2);
void EmitImageGatherDref(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,