VideoBackends:Vulkan: Use VMA for bounding box

This commit is contained in:
Robin Kertels 2022-10-07 23:42:30 +02:00
commit 0e1b7a7b35
No known key found for this signature in database
GPG key ID: 3824904F14D40757
2 changed files with 16 additions and 37 deletions

View file

@ -32,7 +32,7 @@ private:
bool CreateReadbackBuffer();
VkBuffer m_gpu_buffer = VK_NULL_HANDLE;
VkDeviceMemory m_gpu_memory = VK_NULL_HANDLE;
VmaAllocation m_gpu_allocation = VK_NULL_HANDLE;
static constexpr size_t BUFFER_SIZE = sizeof(BBoxType) * NUM_BBOX_VALUES;