Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
A linear allocator where memory can only be deallocated when the entire allocator is cleared. More...
#include <LinearAllocator.hpp>
A linear allocator where memory can only be deallocated when the entire allocator is cleared.
Memory in a linear allocator is allocated sequentially, similar to a StackAllocator, one after the other. This removes the possibility of fragmentation, but with LinearAllocators specifically, they are never deallocated. Also known as an arena allocator.