C Specification
The structure describing source and destination memory regions,
VkCopyMemoryIndirectCommandKHR is defined as:
// Provided by VK_KHR_copy_memory_indirect
typedef struct VkCopyMemoryIndirectCommandKHR {
VkDeviceAddress srcAddress;
VkDeviceAddress dstAddress;
VkDeviceSize size;
} VkCopyMemoryIndirectCommandKHR;
or the equivalent
// Provided by VK_NV_copy_memory_indirect
typedef VkCopyMemoryIndirectCommandKHR VkCopyMemoryIndirectCommandNV;
Members
-
srcAddressis the starting address of the source device memory to copy from. -
dstAddressis the starting address of the destination device memory to copy to. -
sizeis the size of the copy in bytes.
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.