Vulkan Memory Allocator
|
Calculated statistics of memory usage e.g. in a specific memory type, heap, custom pool, or total. More...
Public Attributes | |
uint32_t | blockCount |
Number of VkDeviceMemory objects - Vulkan memory blocks allocated. | |
uint32_t | allocationCount |
Number of VmaAllocation objects allocated. | |
VkDeviceSize | blockBytes |
Number of bytes allocated in VkDeviceMemory blocks. | |
VkDeviceSize | allocationBytes |
Total number of bytes occupied by all VmaAllocation objects. |
Calculated statistics of memory usage e.g. in a specific memory type, heap, custom pool, or total.
These are fast to calculate. See functions: vmaGetHeapBudgets(), vmaGetPoolStatistics().
VkDeviceSize VmaStatistics::allocationBytes |
Total number of bytes occupied by all VmaAllocation objects.
Always less or equal than blockBytes. Difference (blockBytes - allocationBytes) is the amount of memory allocated from Vulkan but unused by any VmaAllocation.
uint32_t VmaStatistics::allocationCount |
Number of VmaAllocation objects allocated.
Dedicated allocations have their own blocks, so each one adds 1 to allocationCount as well as blockCount.
VkDeviceSize VmaStatistics::blockBytes |
Number of bytes allocated in VkDeviceMemory blocks.
uint32_t VmaStatistics::blockCount |
Number of VkDeviceMemory objects - Vulkan memory blocks allocated.