summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-11 04:58:18 +0100
committerLiam <byteslice@airmail.cc>2024-01-11 06:56:37 +0100
commit2044a289f8781199c745a040056b56543fd7ed0e (patch)
treefd7c5adf53c58e041c831ec2fcd8d86a3707d891 /src/shader_recompiler/backend/spirv/emit_spirv_instructions.h
parentMerge pull request #12639 from liamwhite/format-oops (diff)
downloadyuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar.gz
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar.bz2
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar.lz
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar.xz
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.tar.zst
yuzu-2044a289f8781199c745a040056b56543fd7ed0e.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/spirv/emit_spirv_instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h b/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h
index 7d34575c8..5c01b1012 100644
--- a/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h
+++ b/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h
@@ -543,7 +543,7 @@ Id EmitImageQueryDimensions(EmitContext& ctx, IR::Inst* inst, const IR::Value& i
const IR::Value& skip_mips);
Id EmitImageQueryLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords);
Id EmitImageGradient(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id derivatives, Id offset, Id lod_clamp);
+ Id derivatives, const IR::Value& offset, Id lod_clamp);
Id EmitImageRead(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords);
void EmitImageWrite(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords, Id color);
Id EmitIsTextureScaled(EmitContext& ctx, const IR::Value& index);