diff options
| author | 2023-02-01 22:38:00 -0500 | |
|---|---|---|
| committer | 2023-02-01 22:38:00 -0500 | |
| commit | a9a860a4f7fbf192435107ce9855d84c9fe1f475 (patch) | |
| tree | 5063c9bbadfdfa449e590f2d945e55233e9f090a /src/shader_recompiler/backend/spirv/spirv_emit_context.cpp | |
| parent | Merge pull request #9696 from german77/please_forgive_me_for_this_sin (diff) | |
| parent | spirv: Fix TXQ with MSAA textures (diff) | |
| download | yuzu-a9a860a4f7fbf192435107ce9855d84c9fe1f475.tar.gz yuzu-a9a860a4f7fbf192435107ce9855d84c9fe1f475.tar.xz yuzu-a9a860a4f7fbf192435107ce9855d84c9fe1f475.zip | |
Merge pull request #9703 from ameerj/txq-ms
shaders: Fix TXQ with MSAA textures
Diffstat (limited to 'src/shader_recompiler/backend/spirv/spirv_emit_context.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/spirv_emit_context.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/spirv_emit_context.cpp b/src/shader_recompiler/backend/spirv/spirv_emit_context.cpp index 3b97721e1..d48d4860e 100644 --- a/src/shader_recompiler/backend/spirv/spirv_emit_context.cpp +++ b/src/shader_recompiler/backend/spirv/spirv_emit_context.cpp | |||
| @@ -1288,6 +1288,7 @@ void EmitContext::DefineTextures(const Info& info, u32& binding, u32& scaling_in | |||
| 1288 | .pointer_type = pointer_type, | 1288 | .pointer_type = pointer_type, |
| 1289 | .image_type = image_type, | 1289 | .image_type = image_type, |
| 1290 | .count = desc.count, | 1290 | .count = desc.count, |
| 1291 | .is_multisample = desc.is_multisample, | ||
| 1291 | }); | 1292 | }); |
| 1292 | if (profile.supported_spirv >= 0x00010400) { | 1293 | if (profile.supported_spirv >= 0x00010400) { |
| 1293 | interfaces.push_back(id); | 1294 | interfaces.push_back(id); |