vulkan: fix descriptor pool sizes with arrays of samplers.

This commit is contained in:
Sasha Szpakowski
2024-08-04 15:07:23 -03:00
parent 15dfc8db0b
commit ee91a87873
+1 -1
View File
@@ -1073,7 +1073,7 @@ void Shader::createDescriptorPoolSizes()
continue;
size.type = type;
size.descriptorCount = 1;
size.descriptorCount = entry.second->count;
descriptorPoolSizes.push_back(size);
}
}