mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2024-11-23 07:14:34 +00:00
Fixed compilation of Tests.cpp.
This commit is contained in:
parent
4d844e2d29
commit
a1f727c9d0
@ -1722,11 +1722,10 @@ static void TestDefragmentationGpu()
|
|||||||
|
|
||||||
// If corruption detection is enabled, GPU defragmentation may not work on
|
// If corruption detection is enabled, GPU defragmentation may not work on
|
||||||
// memory types that have this detection active, e.g. on Intel.
|
// memory types that have this detection active, e.g. on Intel.
|
||||||
if(VMA_DEBUG_DETECT_CORRUPTION == 0)
|
#if !defined(VMA_DEBUG_DETECT_CORRUPTION) || VMA_DEBUG_DETECT_CORRUPTION == 0
|
||||||
{
|
|
||||||
TEST(stats.allocationsMoved > 0 && stats.bytesMoved > 0);
|
TEST(stats.allocationsMoved > 0 && stats.bytesMoved > 0);
|
||||||
TEST(stats.deviceMemoryBlocksFreed > 0 && stats.bytesFreed > 0);
|
TEST(stats.deviceMemoryBlocksFreed > 0 && stats.bytesFreed > 0);
|
||||||
}
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
ValidateGpuData(allocations.data(), allocations.size());
|
ValidateGpuData(allocations.data(), allocations.size());
|
||||||
|
Loading…
Reference in New Issue
Block a user