VkTensorCopyARM(3)
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
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
dimensionCount
is the number of elements in thepSrcOffset
,pDstOffset
andpExtent
arrays. -
pSrcOffset
isNULL
or an array of sizedimensionCount
providing an offset into the source tensor. WhenpSrcOffset
isNULL
, the offset into the source tensor is0
in all dimensions. -
pDstOffset
isNULL
or an array of sizedimensionCount
providing an offset into the destination tensor. WhenpDstOffset
isNULL
, the offset into the destination tensor is0
in all dimensions. -
pExtent
isNULL
or an array of sizedimensionCount
providing the number of elements to copy in each dimension. WhenpExtent
isNULL
, 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.