VideoBackends:Vulkan: Use VMA for bounding box

This commit is contained in:
Robin Kertels
2022-10-07 23:42:30 +02:00
parent 0532f4a05a
commit 0e1b7a7b35
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;