summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2023-12-21 01:24:11 +0100
committerAmeer J <52414509+ameerj@users.noreply.github.com>2023-12-21 01:24:11 +0100
commita5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32 (patch)
tree86875033da29cf8c7439963a7013620b74d97dbf /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
parentgl_device: Remove AMD blacklists that are no longer applicable (diff)
downloadyuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar.gz
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar.bz2
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar.lz
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar.xz
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.tar.zst
yuzu-a5b2b8b91bc90c55c1ea4b87b8d7b8de59550f32.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 8d0a65047..acebaa785 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -651,7 +651,7 @@ void EmitImageGatherDref(EmitContext& ctx, IR::Inst& inst, const IR::Value& inde
std::string_view coords, const IR::Value& offset, const IR::Value& offset2,
std::string_view dref);
void EmitImageFetch(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view offset, std::string_view lod,
+ std::string_view coords, const IR::Value& offset, std::string_view lod,
std::string_view ms);
void EmitImageQueryDimensions(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
std::string_view lod, const IR::Value& skip_mips);