C Specification
To unmap a memory object once host access to it is no longer needed by the application, call:
// Provided by VK_VERSION_1_0
void vkUnmapMemory(
VkDevice device,
VkDeviceMemory memory);
Parameters
-
device
is the logical device that owns the memory. -
memory
is the memory object to be unmapped.
Description
Calling vkUnmapMemory
is equivalent to calling vkUnmapMemory2KHR
with an empty pNext
chain and the flags parameter set to zero.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.