Revert "Fix memory-scan bug in VulkanDeviceAllocator that probably causes some fragmentation."

This reverts commit ac6b491287.
This commit is contained in:
Henrik Rydgård 2017-12-03 11:31:25 +01:00
parent ac6b491287
commit 6a2f0f4191

View file

@ -246,16 +246,15 @@ bool VulkanDeviceAllocator::AllocateFromSlab(Slab &slab, size_t &start, size_t b
return false;
}
// Slow linear scan.
for (size_t i = 0; i < blocks; ++i) {
if (slab.usage[start + i]) {
// If we just ran into one, there's probably an allocation size.
auto it = slab.allocSizes.find(start + i);
if (it != slab.allocSizes.end()) {
start += it->second;
start += i + it->second;
} else {
// We don't know how big it is, so just skip to the next one.
start += 1;
start += i + 1;
}
return false;
}