Robustify VmaStat
Currently, VmaStat is not defined as typedef. With GCC, this is not compiling.
This commit is contained in:
parent
6ab1604070
commit
231ea193fb
1 changed files with 2 additions and 2 deletions
|
@ -585,12 +585,12 @@ typedef struct VmaStatInfo
|
||||||
} VmaStatInfo;
|
} VmaStatInfo;
|
||||||
|
|
||||||
/// General statistics from current state of Allocator.
|
/// General statistics from current state of Allocator.
|
||||||
struct VmaStats
|
typedef struct VmaStats
|
||||||
{
|
{
|
||||||
VmaStatInfo memoryType[VK_MAX_MEMORY_TYPES];
|
VmaStatInfo memoryType[VK_MAX_MEMORY_TYPES];
|
||||||
VmaStatInfo memoryHeap[VK_MAX_MEMORY_HEAPS];
|
VmaStatInfo memoryHeap[VK_MAX_MEMORY_HEAPS];
|
||||||
VmaStatInfo total;
|
VmaStatInfo total;
|
||||||
};
|
} VmaStats;
|
||||||
|
|
||||||
/// Retrieves statistics from current state of the Allocator.
|
/// Retrieves statistics from current state of the Allocator.
|
||||||
void vmaCalculateStats(
|
void vmaCalculateStats(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue