diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-07-09 23:16:56 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:27 +0200 |
commit | e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc (patch) | |
tree | 08f3f261c23b417890e612c884f0bdf509c9c585 /src | |
parent | spirv: Fix forward declarations on phi nodes (diff) | |
download | yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.gz yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.bz2 yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.lz yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.xz yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.zst yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_vulkan/pipeline_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/pipeline_helper.h b/src/video_core/renderer_vulkan/pipeline_helper.h index d2c3f11c1..a39459b2e 100644 --- a/src/video_core/renderer_vulkan/pipeline_helper.h +++ b/src/video_core/renderer_vulkan/pipeline_helper.h @@ -97,7 +97,7 @@ public: for ([[maybe_unused]] const auto& desc : info.texture_descriptors) { Add(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, stage); } - for (const auto& desc : info.image_descriptors) { + for ([[maybe_unused]] const auto& desc : info.image_descriptors) { Add(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, stage); } } |