summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp
diff options
context:
space:
mode:
authorGravatar ameerj2021-05-28 13:55:07 -0400
committerGravatar ameerj2021-07-22 21:51:36 -0400
commit453cd25da57e4088826cb6df48b5b6856affe109 (patch)
tree4bd46945e30e5bfaddbf95acf68fae913ac2dcb4 /src/shader_recompiler/backend/glsl/emit_glsl_image.cpp
parentglsl: WIP var forward declaration (diff)
downloadyuzu-453cd25da57e4088826cb6df48b5b6856affe109.tar.gz
yuzu-453cd25da57e4088826cb6df48b5b6856affe109.tar.xz
yuzu-453cd25da57e4088826cb6df48b5b6856affe109.zip
glsl: SSBO access fixes and wip SampleExplicitLod implementation.
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_image.cpp')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_image.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp
index c070fba0e..1a34fe9b3 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_image.cpp
@@ -46,7 +46,20 @@ void EmitImageSampleExplicitLod([[maybe_unused]] EmitContext& ctx, [[maybe_unuse
46 [[maybe_unused]] std::string_view coords, 46 [[maybe_unused]] std::string_view coords,
47 [[maybe_unused]] std::string_view lod_lc, 47 [[maybe_unused]] std::string_view lod_lc,
48 [[maybe_unused]] const IR::Value& offset) { 48 [[maybe_unused]] const IR::Value& offset) {
49 throw NotImplementedException("GLSL Instruction"); 49 const auto info{inst.Flags<IR::TextureInstInfo>()};
50 if (info.has_bias) {
51 throw NotImplementedException("Bias texture samples");
52 }
53 if (info.has_lod_clamp) {
54 throw NotImplementedException("Lod clamp samples");
55 }
56 const auto texture{Texture(ctx, info, index)};
57 if (!offset.IsEmpty()) {
58 ctx.AddF32x4("{}=textureLodOffset({},{},{},ivec2({}));", inst, texture, coords, lod_lc,
59 ctx.reg_alloc.Consume(offset));
60 } else {
61 ctx.AddF32x4("{}=textureLod({},{},{});", inst, texture, coords, lod_lc);
62 }
50} 63}
51 64
52void EmitImageSampleDrefImplicitLod([[maybe_unused]] EmitContext& ctx, 65void EmitImageSampleDrefImplicitLod([[maybe_unused]] EmitContext& ctx,