summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
diff options
context:
space:
mode:
authorGravatar ameerj2021-05-31 16:03:20 -0400
committerGravatar ameerj2021-07-22 21:51:37 -0400
commitc7d085b505ab6a766bf37b34030fc9fcb5b662b7 (patch)
tree9dc7b8873418d890a1e89183e981884af1b9d3ac /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
parentglsl: Fix atomic SSBO offsets (diff)
downloadyuzu-c7d085b505ab6a766bf37b34030fc9fcb5b662b7.tar.gz
yuzu-c7d085b505ab6a766bf37b34030fc9fcb5b662b7.tar.xz
yuzu-c7d085b505ab6a766bf37b34030fc9fcb5b662b7.zip
glsl: Implement ImageGradient and other texture function variants
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_instructions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 24c36bbda..e7009d8e9 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -631,8 +631,8 @@ void EmitImageQueryDimensions(EmitContext& ctx, IR::Inst& inst, const IR::Value&
631void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, 631void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
632 std::string_view coords); 632 std::string_view coords);
633void EmitImageGradient(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, 633void EmitImageGradient(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
634 std::string_view coords, std::string_view derivates, std::string_view offset, 634 std::string_view coords, const IR::Value& derivatives,
635 std::string_view lod_clamp); 635 const IR::Value& offset, const IR::Value& lod_clamp);
636void EmitImageRead(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, 636void EmitImageRead(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
637 std::string_view coords); 637 std::string_view coords);
638void EmitImageWrite(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, 638void EmitImageWrite(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,