Plasma Engine  2.0
Loading...
Searching...
No Matches
PageAllocator.h
1#pragma once
2
3#include <Foundation/Basics.h>
4
6class PL_FOUNDATION_DLL plPageAllocator
7{
8public:
9 static void* AllocatePage(size_t uiSize);
10 static void DeallocatePage(void* pPtr);
11
12 static plAllocatorId GetId();
13};
This helper class can reserve and allocate whole memory pages.
Definition PageAllocator.h:7