summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/spirv/emit_spirv.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-04-17 07:59:54 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:28 +0200
commitdbbd4b549682dd4302e6258cced184a0ec78e99a (patch)
tree81f7d4dbe2d56c3bf1c0553a9983ef153dcbc72c /src/shader_recompiler/backend/spirv/emit_spirv.h
parentshader: Implement BFE and BFI CC (diff)
downloadyuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar.gz
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar.bz2
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar.lz
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar.xz
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.tar.zst
yuzu-dbbd4b549682dd4302e6258cced184a0ec78e99a.zip
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv.h')
-rw-r--r--src/shader_recompiler/backend/spirv/emit_spirv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.h b/src/shader_recompiler/backend/spirv/emit_spirv.h
index 9f658a4bd..cf8d74f4e 100644
--- a/src/shader_recompiler/backend/spirv/emit_spirv.h
+++ b/src/shader_recompiler/backend/spirv/emit_spirv.h
@@ -490,13 +490,13 @@ Id EmitBoundImageGradient(EmitContext&);
Id EmitBoundImageRead(EmitContext&);
Id EmitBoundImageWrite(EmitContext&);
Id EmitImageSampleImplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id bias_lc, Id offset);
+ Id bias_lc, const IR::Value& offset);
Id EmitImageSampleExplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id lod_lc, Id offset);
+ Id lod_lc, const IR::Value& offset);
Id EmitImageSampleDrefImplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index,
- Id coords, Id dref, Id bias_lc, Id offset);
+ Id coords, Id dref, Id bias_lc, const IR::Value& offset);
Id EmitImageSampleDrefExplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index,
- Id coords, Id dref, Id lod_lc, Id offset);
+ Id coords, Id dref, Id lod_lc, const IR::Value& offset);
Id EmitImageGather(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
const IR::Value& offset, const IR::Value& offset2);
Id EmitImageGatherDref(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,