VkCopyMemoryIndirectCommandKHR(3)
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;
// Provided by VK_NV_copy_memory_indirect
// Equivalent to VkCopyMemoryIndirectCommandKHR
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.
See Also
VK_KHR_copy_memory_indirect, VK_NV_copy_memory_indirect, VkDeviceAddress, VkDeviceSize
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.