mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 11:29:59 +00:00
pipeline_helper: Add missing [[maybe_unused]]
This commit is contained in:
parent
2e71e4c5c0
commit
e5e79648cf
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ public:
|
||||||
for ([[maybe_unused]] const auto& desc : info.texture_descriptors) {
|
for ([[maybe_unused]] const auto& desc : info.texture_descriptors) {
|
||||||
Add(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, stage);
|
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);
|
Add(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, stage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue