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