LkEngine 0.1.2
 
Loading...
Searching...
No Matches
MemoryStats.h
1#pragma once
2
3#include "LkEngine/Core/Base.h"
4
5
6namespace LkEngine {
7
9 {
10 uint64_t Used = 0;
11 uint64_t TotalAvailable = 0;
12 uint64_t AllocationCount = 0;
13
14 uint64_t BufferAllocationSize = 0;
15 uint64_t BufferAllocationCount = 0;
16
17 uint64_t ImageAllocationSize = 0;
18 uint64_t ImageAllocationCount = 0;
19 };
20
21
22
23}
Definition Asset.h:11
Definition MemoryStats.h:9