mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/D3D12MemoryAllocator.git
synced 2024-11-12 23:40:06 +00:00
Fixed bug in BlockMetadata_TLSF::WriteAllocationInfoToJson
Fixes #35, thanks @Rob1B !
This commit is contained in:
parent
4eee6838b7
commit
583aee7676
@ -5603,7 +5603,7 @@ void BlockMetadata_TLSF::WriteAllocationInfoToJson(JsonWriter& json) const
|
||||
if (block->IsFree())
|
||||
PrintDetailedMap_UnusedRange(json, block->offset, block->size);
|
||||
else
|
||||
PrintDetailedMap_Allocation(json, block->size, block->offset, block->PrivateData());
|
||||
PrintDetailedMap_Allocation(json, block->offset, block->size, block->PrivateData());
|
||||
}
|
||||
PrintDetailedMap_End(json);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user