diff options
author | bunnei <bunneidev@gmail.com> | 2023-01-29 01:32:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-29 01:32:11 +0100 |
commit | 40e7d781793d70d09f6900c535d9566342b544b5 (patch) | |
tree | 3dd6b6a65095b7b1acabe8e2120358922c6a1987 /src/shader_recompiler/backend/glsl/emit_glsl_image.cpp | |
parent | Merge pull request #9682 from ameerj/shader-s32 (diff) | |
parent | emit_glsl_image: Fix ImageFetch for MSAA textures (diff) | |
download | yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar.gz yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar.bz2 yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar.lz yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar.xz yuzu-40e7d781793d70d09f6900c535d9566342b544b5.tar.zst yuzu-40e7d781793d70d09f6900c535d9566342b544b5.zip |
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_image.cpp')
-rw-r--r-- | src/shader_recompiler/backend/glsl/emit_glsl_image.cpp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp index cecdbb9d6..d8874b0cc 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp +++ b/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp @@ -414,7 +414,7 @@ void EmitImageGatherDref(EmitContext& ctx, IR::Inst& inst, const IR::Value& inde void EmitImageFetch(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, std::string_view coords, std::string_view offset, std::string_view lod, - [[maybe_unused]] std::string_view ms) { + std::string_view ms) { const auto info{inst.Flags<IR::TextureInstInfo>()}; if (info.has_bias) { throw NotImplementedException("EmitImageFetch Bias texture samples"); @@ -431,19 +431,24 @@ void EmitImageFetch(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, ctx.AddU1("{}=true;", *sparse_inst); } if (!sparse_inst || !supports_sparse) { - if (!offset.empty()) { - ctx.Add("{}=texelFetchOffset({},{},int({}),{});", texel, texture, - CoordsCastToInt(coords, info), lod, CoordsCastToInt(offset, info)); + const auto int_coords{CoordsCastToInt(coords, info)}; + if (!ms.empty()) { + ctx.Add("{}=texelFetch({},{},int({}));", texel, texture, int_coords, ms); + } else if (!offset.empty()) { + ctx.Add("{}=texelFetchOffset({},{},int({}),{});", texel, texture, int_coords, lod, + CoordsCastToInt(offset, info)); } else { if (info.type == TextureType::Buffer) { ctx.Add("{}=texelFetch({},int({}));", texel, texture, coords); } else { - ctx.Add("{}=texelFetch({},{},int({}));", texel, texture, - CoordsCastToInt(coords, info), lod); + ctx.Add("{}=texelFetch({},{},int({}));", texel, texture, int_coords, lod); } } return; } + if (!ms.empty()) { + throw NotImplementedException("EmitImageFetch Sparse MSAA samples"); + } if (!offset.empty()) { ctx.AddU1("{}=sparseTexelsResidentARB(sparseTexelFetchOffsetARB({},{},int({}),{},{}));", *sparse_inst, texture, CastToIntVec(coords, info), lod, |