fixing dangling pointer in vulkan's command pools

This commit is contained in:
2025-03-03 10:31:55 +01:00
parent 8abb2b710c
commit b1102874e6
2 changed files with 11 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ typedef struct VulkanDevice
VulkanDescriptorSetPoolManager descriptor_set_pool_manager;
VulkanDescriptorSetLayoutManager descriptor_set_layout_manager;
VulkanCommandPool* cmd_pools;
VulkanCommandPool** cmd_pools;
uint32_t cmd_pools_size;
struct VulkanQueue* queues[VULKAN_QUEUE_END_ENUM];