C Specification
The VkCopyDeviceMemoryInfoKHR structure is defined as:
// Provided by VK_KHR_device_address_commands
typedef struct VkCopyDeviceMemoryInfoKHR {
VkStructureType sType;
const void* pNext;
uint32_t regionCount;
const VkDeviceMemoryCopyKHR* pRegions;
} VkCopyDeviceMemoryInfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
regionCountis the number of copies to be performed. -
pRegionsis a pointer to an array of VkDeviceMemoryCopyKHR structures describing individual copy operations between two memory ranges.
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.