Two small fixes.
This commit is contained in:
parent
f1e93549c9
commit
0c1c663062
2 changed files with 2 additions and 1 deletions
Binary file not shown.
|
@ -1106,7 +1106,7 @@ private:
|
|||
|
||||
#if VMA_DEBUG_GLOBAL_MUTEX
|
||||
static VMA_MUTEX gDebugGlobalMutex;
|
||||
#define VMA_DEBUG_GLOBAL_MUTEX_LOCK VmaMutexLock debugGlobalMutexLock(gDebugGlobalMutex);
|
||||
#define VMA_DEBUG_GLOBAL_MUTEX_LOCK VmaMutexLock debugGlobalMutexLock(gDebugGlobalMutex, true);
|
||||
#else
|
||||
#define VMA_DEBUG_GLOBAL_MUTEX_LOCK
|
||||
#endif
|
||||
|
@ -2857,6 +2857,7 @@ void VmaBlock::Init(
|
|||
|
||||
void VmaBlock::Destroy(VmaAllocator allocator)
|
||||
{
|
||||
VMA_ASSERT(IsEmpty());
|
||||
VMA_ASSERT(m_hMemory != VK_NULL_HANDLE);
|
||||
if(m_pMappedData != VMA_NULL)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue