summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-07-09 18:16:56 -0300
committerGravatar ameerj2021-07-22 21:51:27 -0400
commite5e79648cfa3ac9d30c00bccf4252cd0dc93bccc (patch)
tree08f3f261c23b417890e612c884f0bdf509c9c585 /src
parentspirv: Fix forward declarations on phi nodes (diff)
downloadyuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.gz
yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.tar.xz
yuzu-e5e79648cfa3ac9d30c00bccf4252cd0dc93bccc.zip
pipeline_helper: Add missing [[maybe_unused]]
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/pipeline_helper.h2
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:
97 for ([[maybe_unused]] const auto& desc : info.texture_descriptors) { 97 for ([[maybe_unused]] const auto& desc : info.texture_descriptors) {
98 Add(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, stage); 98 Add(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, stage);
99 } 99 }
100 for (const auto& desc : info.image_descriptors) { 100 for ([[maybe_unused]] const auto& desc : info.image_descriptors) {
101 Add(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, stage); 101 Add(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, stage);
102 } 102 }
103 } 103 }