diff options
| author | 2021-05-31 16:03:20 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:37 -0400 | |
| commit | c7d085b505ab6a766bf37b34030fc9fcb5b662b7 (patch) | |
| tree | 9dc7b8873418d890a1e89183e981884af1b9d3ac /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |
| parent | glsl: Fix atomic SSBO offsets (diff) | |
| download | yuzu-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.h | 4 |
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& | |||
| 631 | void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 631 | void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 632 | std::string_view coords); | 632 | std::string_view coords); |
| 633 | void EmitImageGradient(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 633 | void 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); |
| 636 | void EmitImageRead(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 636 | void EmitImageRead(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |
| 637 | std::string_view coords); | 637 | std::string_view coords); |
| 638 | void EmitImageWrite(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, | 638 | void EmitImageWrite(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, |