Code cleanup

This commit is contained in:
Sascha Willems 2024-01-21 13:19:40 +01:00
parent 91ab6a517f
commit afde90dcfd
3 changed files with 9 additions and 6 deletions

View file

@ -335,7 +335,7 @@ public:
vkEndCommandBuffer(compute.commandBuffer);
}
void setupDescriptorSets()
void setupDescriptors()
{
// Pool
std::vector<VkDescriptorPoolSize> poolSizes = {
@ -744,7 +744,7 @@ public:
VulkanExampleBase::prepare();
loadAssets();
prepareBuffers();
setupDescriptorSets();
setupDescriptors();
preparePipelines();
prepareCompute();
buildCommandBuffers();