Browse Source

pipeline_helper: Add missing [[maybe_unused]]

nce_cpp
ReinUsesLisp 5 years ago
committed by ameerj
parent
commit
9a49eed4d6
  1. 2
      src/video_core/renderer_vulkan/pipeline_helper.h

2
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);
}
}

Loading…
Cancel
Save