mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2024-11-13 03:51:46 +00:00
Fix compilation of VmaReplay project
This commit is contained in:
parent
451bf601d8
commit
4405c51aab
@ -809,7 +809,8 @@ static void VKAPI_CALL AllocateDeviceMemoryCallback(
|
|||||||
VmaAllocator allocator,
|
VmaAllocator allocator,
|
||||||
uint32_t memoryType,
|
uint32_t memoryType,
|
||||||
VkDeviceMemory memory,
|
VkDeviceMemory memory,
|
||||||
VkDeviceSize size)
|
VkDeviceSize size,
|
||||||
|
void* pUserData)
|
||||||
{
|
{
|
||||||
g_Statistics->RegisterDeviceMemoryAllocation(memoryType, size);
|
g_Statistics->RegisterDeviceMemoryAllocation(memoryType, size);
|
||||||
}
|
}
|
||||||
@ -819,7 +820,8 @@ static void VKAPI_CALL FreeDeviceMemoryCallback(
|
|||||||
VmaAllocator allocator,
|
VmaAllocator allocator,
|
||||||
uint32_t memoryType,
|
uint32_t memoryType,
|
||||||
VkDeviceMemory memory,
|
VkDeviceMemory memory,
|
||||||
VkDeviceSize size)
|
VkDeviceSize size,
|
||||||
|
void* pUserData)
|
||||||
{
|
{
|
||||||
// Nothing.
|
// Nothing.
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user