VenomEngine
Cross-Platform Modern Graphics Engine
|
MemoryPool class to manage memory allocation and deallocation. For now, it's just a wrapper around memory C functions. More...
#include <MemoryPool.h>
Static Public Member Functions | |
static Error | CreateMemoryPool () |
static void * | Malloc (const size_t size) |
static void | Free (void *ptr) |
static void * | Realloc (void *ptr, const size_t size) |
MemoryPool class to manage memory allocation and deallocation. For now, it's just a wrapper around memory C functions.