More Refactoring

This commit is contained in:
Dynamitos
2023-11-15 17:42:57 +01:00
parent f8f48352a3
commit 35966cb5b7
60 changed files with 1217 additions and 2332 deletions
+4 -4
View File
@@ -31,11 +31,11 @@ DescriptorBinding& DescriptorBinding::operator=(const DescriptorBinding& other)
return *this;
}
DescriptorAllocator::DescriptorAllocator()
DescriptorPool::DescriptorPool()
{
}
DescriptorAllocator::~DescriptorAllocator()
DescriptorPool::~DescriptorPool()
{
}
@@ -87,12 +87,12 @@ void DescriptorLayout::addDescriptorBinding(uint32 bindingIndex, SeDescriptorTyp
PDescriptorSet DescriptorLayout::allocateDescriptorSet()
{
return allocator->allocateDescriptorSet();
return pool->allocateDescriptorSet();
}
void DescriptorLayout::reset()
{
allocator->reset();
pool->reset();
}
PipelineLayout::PipelineLayout()