Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Grindstone::Memory::Allocators Namespace Reference

Classes

class  BasePoolAllocator
class  DynamicAllocator
 A dynamic allocator represented by a linked list. More...
class  GenericPoolAllocator
 A generic pool allocator where all allocations have up to a certain chunk size. More...
class  LinearAllocator
 A linear allocator where memory can only be deallocated when the entire allocator is cleared. More...
class  PoolAllocator
 A typed pool allocator where all allocations are the size of the type T. More...
class  StackAllocator
 A stack allocator where memory can only be deallocated in order (LIFO). More...