C Specification
If the pNext
chain includes a
VkMemoryDedicatedAllocateInfoTensorARM
structure, then that structure
includes a handle of the sole tensor resource that the memory can be bound
to.
The VkMemoryDedicatedAllocateInfoTensorARM
structure is defined as:
// Provided by VK_ARM_tensors
typedef struct VkMemoryDedicatedAllocateInfoTensorARM {
VkStructureType sType;
const void* pNext;
VkTensorARM tensor;
} VkMemoryDedicatedAllocateInfoTensorARM;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
tensor
is a handle of a tensor which this memory will be bound to.
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.