C Specification
The VkTensorCopyARM structure is defined as:
// Provided by VK_ARM_tensors
typedef struct VkTensorCopyARM {
    VkStructureType    sType;
    const void*        pNext;
    uint32_t           dimensionCount;
    const uint64_t*    pSrcOffset;
    const uint64_t*    pDstOffset;
    const uint64_t*    pExtent;
} VkTensorCopyARM;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
dimensionCountis the number of elements in thepSrcOffset,pDstOffsetandpExtentarrays.
- 
pSrcOffsetisNULLor an array of sizedimensionCountproviding an offset into the source tensor. WhenpSrcOffsetisNULL, the offset into the source tensor is0in all dimensions.
- 
pDstOffsetisNULLor an array of sizedimensionCountproviding an offset into the destination tensor. WhenpDstOffsetisNULL, the offset into the destination tensor is0in all dimensions.
- 
pExtentisNULLor an array of sizedimensionCountproviding the number of elements to copy in each dimension. WhenpExtentisNULL, the number of elements to copy is taken as the total number of elements in each dimension of the source tensor.
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.