CryModuleMemoryInfo

Structure filled by call to CryModuleGetMemoryInfo().

C++
struct CryModuleMemoryInfo {
  uint64 requested;
  uint64 allocated;
  uint64 freed;
  int num_allocations;
  uint64 CryString_allocated;
  uint64 STL_allocated;
  uint64 STL_wasted;
};
File

CryMemoryManager.h

Members
Members
Description
uint64 allocated;
Total Ammount of memory allocated.
uint64 freed;
Total Ammount of memory freed.
int num_allocations;
Total number of memory allocations.
uint64 CryString_allocated;
Allocated in CryString.
uint64 STL_allocated;
Allocated in STL.
uint64 STL_wasted;
Amount of memory wasted in pools in stl (not usefull allocations).