summaryrefslogtreecommitdiff
path: root/drivers/vulkan/rendering_device_vulkan.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-02-24 23:42:09 +0100
committerGitHub <noreply@github.com>2022-02-24 23:42:09 +0100
commit80baa1386a5a19ed8ea50082617d2ae9112678fc (patch)
tree7a4c1fa7bb8180a6d3565f76be85467d30c66220 /drivers/vulkan/rendering_device_vulkan.h
parent4dc8214831d1617e7f5f06e8294fb37ea23dae59 (diff)
parent801741e7870a3e4f943a8628447c5eac74ecb2e3 (diff)
Merge pull request #58491 from RandomShaper/vma_upgrade
vk_mem_alloc: Update to latest upstream + volk: Finish update + Adapt custom approach to small objects
Diffstat (limited to 'drivers/vulkan/rendering_device_vulkan.h')
-rw-r--r--drivers/vulkan/rendering_device_vulkan.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/vulkan/rendering_device_vulkan.h b/drivers/vulkan/rendering_device_vulkan.h
index 3e4327667b..126f6f8ad0 100644
--- a/drivers/vulkan/rendering_device_vulkan.h
+++ b/drivers/vulkan/rendering_device_vulkan.h
@@ -1016,7 +1016,8 @@ class RenderingDeviceVulkan : public RenderingDevice {
void _free_pending_resources(int p_frame);
VmaAllocator allocator = nullptr;
- VmaPool small_allocs_pool = nullptr;
+ Map<uint32_t, VmaPool> small_allocs_pools;
+ VmaPool _find_or_create_small_allocs_pool(uint32_t p_mem_type_index);
VulkanContext *context = nullptr;