Searched refs:defragInfo (Results 1 – 2 of 2) sorted by relevance
2470 VmaDefragmentationInfo2 defragInfo = {}; in Defragment() local2471 defragInfo.allocationCount = (uint32_t)notNullAllocCount; in Defragment()2472 defragInfo.pAllocations = allocations.data(); in Defragment()2473 defragInfo.pAllocationsChanged = allocationsChanged.data(); in Defragment()2474 defragInfo.maxCpuAllocationsToMove = UINT32_MAX; in Defragment()2475 defragInfo.maxCpuBytesToMove = VK_WHOLE_SIZE; in Defragment()2476 defragInfo.maxGpuAllocationsToMove = UINT32_MAX; in Defragment()2477 defragInfo.maxGpuBytesToMove = VK_WHOLE_SIZE; in Defragment()2478 defragInfo.flags = g_DefragmentationFlags; in Defragment()2479 defragInfo.commandBuffer = m_CommandBuffer; in Defragment()[all …]
1388 VmaDefragmentationInfo2 defragInfo = {}; in TestDefragmentationSimple() local1389 defragInfo.maxCpuBytesToMove = VK_WHOLE_SIZE; in TestDefragmentationSimple()1390 defragInfo.maxCpuAllocationsToMove = UINT32_MAX; in TestDefragmentationSimple()1391 defragInfo.poolCount = 1; in TestDefragmentationSimple()1392 defragInfo.pPools = &pool; in TestDefragmentationSimple()1396 VkResult res = vmaDefragmentationBegin(g_hAllocator, &defragInfo, &defragStats, &defragCtx); in TestDefragmentationSimple()1458 VmaDefragmentationInfo defragInfo = {}; in TestDefragmentationSimple() local1459 defragInfo.maxAllocationsToMove = 1; in TestDefragmentationSimple()1460 defragInfo.maxBytesToMove = BUF_SIZE; in TestDefragmentationSimple()1465 Defragment(allocations.data(), allocations.size(), &defragInfo, &defragStats); in TestDefragmentationSimple()[all …]