Skip to content
Snippets Groups Projects
Verified Commit 3e4994ec authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#56] Added free()-call to descriptor-sets and fixed wrong descriptor-pool in list

parent 3648d60d
No related branches found
No related tags found
1 merge request!45Resolve "Szene-Repräsentation"
Pipeline #26226 passed
......@@ -11,6 +11,7 @@ namespace vkcv
{
vk::DescriptorSet vulkanHandle;
vk::DescriptorSetLayout layout;
size_t poolIndex;
};
/*
......
......@@ -21,8 +21,8 @@ namespace vkcv::scene {
Core* m_core;
std::vector<Node> m_nodes;
std::vector<Material> m_materials;
std::vector<Node> m_nodes;
explicit Scene(Core* core);
......
......@@ -8,8 +8,8 @@ namespace vkcv::scene {
Scene::Scene(Core* core) :
m_core(core),
m_nodes(),
m_materials() {}
m_materials(),
m_nodes() {}
Scene::~Scene() {
m_nodes.clear();
......
......@@ -16,7 +16,8 @@ namespace vkcv
vk::DescriptorPoolSize(vk::DescriptorType::eUniformBuffer, 1000),
vk::DescriptorPoolSize(vk::DescriptorType::eStorageBuffer, 1000) };
m_PoolInfo = vk::DescriptorPoolCreateInfo({},
m_PoolInfo = vk::DescriptorPoolCreateInfo(
vk::DescriptorPoolCreateFlagBits::eFreeDescriptorSet,
1000,
static_cast<uint32_t>(m_PoolSizes.size()),
m_PoolSizes.data());
......@@ -29,9 +30,13 @@ namespace vkcv
for (uint64_t id = 0; id < m_DescriptorSets.size(); id++) {
destroyDescriptorSetById(id);
}
m_DescriptorSets.clear();
for (const auto &pool : m_Pools) {
m_Device.destroy(pool);
if (pool) {
m_Device.destroy(pool);
}
}
}
......@@ -40,12 +45,12 @@ namespace vkcv
std::vector<vk::DescriptorSetLayoutBinding> setBindings = {};
//create each set's binding
for (uint32_t i = 0; i < bindings.size(); i++) {
for (auto binding : bindings) {
vk::DescriptorSetLayoutBinding descriptorSetLayoutBinding(
bindings[i].bindingID,
convertDescriptorTypeFlag(bindings[i].descriptorType),
bindings[i].descriptorCount,
convertShaderStageFlag(bindings[i].shaderStage));
binding.bindingID,
convertDescriptorTypeFlag(binding.descriptorType),
binding.descriptorCount,
convertShaderStageFlag(binding.shaderStage));
setBindings.push_back(descriptorSetLayoutBinding);
}
......@@ -53,8 +58,7 @@ namespace vkcv
//create the descriptor set's layout from the bindings gathered above
vk::DescriptorSetLayoutCreateInfo layoutInfo({}, setBindings);
if(m_Device.createDescriptorSetLayout(&layoutInfo, nullptr, &set.layout) != vk::Result::eSuccess)
{
if (m_Device.createDescriptorSetLayout(&layoutInfo, nullptr, &set.layout) != vk::Result::eSuccess) {
vkcv_log(LogLevel::ERROR, "Failed to create descriptor set layout");
return DescriptorSetHandle();
};
......@@ -70,6 +74,7 @@ namespace vkcv
allocInfo.setDescriptorPool(m_Pools.back());
result = m_Device.allocateDescriptorSets(&allocInfo, &set.vulkanHandle);
}
if (result != vk::Result::eSuccess) {
vkcv_log(LogLevel::ERROR, "Failed to create descriptor set (%s)",
vk::to_string(result).c_str());
......@@ -78,6 +83,8 @@ namespace vkcv
return DescriptorSetHandle();
}
};
set.poolIndex = (m_Pools.size() - 1);
const uint64_t id = m_DescriptorSets.size();
......@@ -277,17 +284,22 @@ namespace vkcv
m_Device.destroyDescriptorSetLayout(set.layout);
set.layout = nullptr;
}
// FIXME: descriptor set itself not destroyed
if (set.vulkanHandle) {
m_Device.freeDescriptorSets(m_Pools[set.poolIndex], 1, &(set.vulkanHandle));
set.vulkanHandle = nullptr;
}
}
vk::DescriptorPool DescriptorManager::allocateDescriptorPool() {
vk::DescriptorPool pool;
if (m_Device.createDescriptorPool(&m_PoolInfo, nullptr, &pool) != vk::Result::eSuccess)
{
if (m_Device.createDescriptorPool(&m_PoolInfo, nullptr, &pool) != vk::Result::eSuccess) {
vkcv_log(LogLevel::WARNING, "Failed to allocate descriptor pool");
pool = nullptr;
};
m_Pools.push_back(pool);
} else {
m_Pools.push_back(pool);
}
return pool;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment