Fix linux build issue
This commit is contained in:
parent
cb93aaf83d
commit
71fe041691
1 changed files with 1 additions and 1 deletions
|
@ -2138,7 +2138,7 @@ void GFXVulkan::cacheDescriptorState(GFXVulkanPipeline* pipeline, VkDescriptorSe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto& [i, sampler] : utility::enumerate(boundSamplers)) {
|
for (auto [i, sampler] : utility::enumerate(boundSamplers)) {
|
||||||
if (sampler != nullptr) {
|
if (sampler != nullptr) {
|
||||||
GFXVulkanSampler* vulkanSampler = (GFXVulkanSampler*) sampler;
|
GFXVulkanSampler* vulkanSampler = (GFXVulkanSampler*) sampler;
|
||||||
|
|
||||||
|
|
Reference in a new issue