Structures
VkCopyMemoryIndirectCommandNV
Structure specifying indirect memory region copy operation
The structure describing source and destination memory regions,
VkCopyMemoryIndirectCommandNV is defined as:
typedef struct VkCopyMemoryIndirectCommandNV {
VkDeviceAddress srcAddress;
VkDeviceAddress dstAddress;
VkDeviceSize size;
} VkCopyMemoryIndirectCommandNV;
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.
Valid Usage
VUID-VkCopyMemoryIndirectCommandNV-srcAddress-07657
The srcAddress must be 4 byte aligned
VUID-VkCopyMemoryIndirectCommandNV-dstAddress-07658
The dstAddress must be 4 byte aligned
VUID-VkCopyMemoryIndirectCommandNV-size-07659
The size must be 4 byte aligned