summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-27 22:49:29 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:33 +0200
commit83db7abae6550f89ba907789efdf818d93be1b5d (patch)
treecfcd80a451cd53a540d08fee11989b58c37caf73 /src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
parentglasm: Prepare XFB from state instead of global registers (diff)
downloadyuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar.gz
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar.bz2
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar.lz
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar.xz
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.tar.zst
yuzu-83db7abae6550f89ba907789efdf818d93be1b5d.zip
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm_instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
index 7b0f75405..c9f4826ce 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
+++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
@@ -546,7 +546,7 @@ void EmitImageGatherDref(EmitContext& ctx, IR::Inst& inst, const IR::Value& inde
void EmitImageFetch(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
const IR::Value& coord, const IR::Value& offset, ScalarS32 lod, ScalarS32 ms);
void EmitImageQueryDimensions(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- ScalarF32 lod);
+ ScalarS32 lod);
void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord);
void EmitImageGradient(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
const IR::Value& coord, const IR::Value& derivatives,