==============================================================================
| 112 | |
| 113 | //============================================================================== |
| 114 | void* MemoryManager::allocateUsingPool(size_t bytes) |
| 115 | { |
| 116 | return allocate(Type::Pool, bytes); |
| 117 | } |
| 118 | |
| 119 | //============================================================================== |
| 120 | void MemoryManager::deallocate(Type type, void* pointer, size_t bytes) |