[dxvk] Remove old debug code

This commit is contained in:
Philip Rebohle 2018-03-20 22:36:02 +01:00
parent 42d49d7603
commit 894444d43d
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 1 additions and 3 deletions

View File

@ -108,7 +108,6 @@ namespace dxvk {
m_freeList.push_back({ allocEnd, sliceEnd - allocEnd });
// Create the memory object with the aligned slice
m_delta++;
return DxvkMemory(this, m_heap,
m_memory, allocStart, allocEnd - allocStart,
reinterpret_cast<char*>(m_mapPtr) + allocStart);
@ -136,7 +135,6 @@ namespace dxvk {
}
}
m_delta--;
m_freeList.push_back({ offset, length });
}

View File

@ -130,7 +130,7 @@ namespace dxvk {
VkDeviceMemory const m_memory;
void* const m_mapPtr;
VkDeviceSize const m_size;
size_t m_delta = 0;
std::vector<FreeSlice> m_freeList;
};