mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 04:10:06 +00:00
Merge pull request #259 from brianosman/patch-1
Fix return type of GetAllocationNextPtr
This commit is contained in:
commit
7de5cc00de
@ -10928,7 +10928,7 @@ public:
|
||||
uint32_t GetAlgorithm() const { return m_Algorithm; }
|
||||
bool HasExplicitBlockSize() const { return m_ExplicitBlockSize; }
|
||||
float GetPriority() const { return m_Priority; }
|
||||
void* const GetAllocationNextPtr() const { return m_pMemoryAllocateNext; }
|
||||
const void* GetAllocationNextPtr() const { return m_pMemoryAllocateNext; }
|
||||
// To be used only while the m_Mutex is locked. Used during defragmentation.
|
||||
size_t GetBlockCount() const { return m_Blocks.size(); }
|
||||
// To be used only while the m_Mutex is locked. Used during defragmentation.
|
||||
|
Loading…
Reference in New Issue
Block a user