Robustify VmaStat

Currently, VmaStat is not defined as typedef.
With GCC, this is not compiling.
This commit is contained in:
Jean-Sebastien Bevilacqua 2017-09-21 08:57:36 +02:00
parent 6ab1604070
commit 231ea193fb

View File

@ -585,12 +585,12 @@ typedef struct VmaStatInfo
} VmaStatInfo;
/// General statistics from current state of Allocator.
struct VmaStats
typedef struct VmaStats
{
VmaStatInfo memoryType[VK_MAX_MEMORY_TYPES];
VmaStatInfo memoryHeap[VK_MAX_MEMORY_HEAPS];
VmaStatInfo total;
};
} VmaStats;
/// Retrieves statistics from current state of the Allocator.
void vmaCalculateStats(