Structures
VkWriteDescriptorSetTensorARM
Structure specifying descriptor tensor info
The VkWriteDescriptorSetTensorARM structure is defined as:
typedef struct VkWriteDescriptorSetTensorARM {
VkStructureType sType;
const void* pNext;
uint32_t tensorViewCount;
const VkTensorViewARM* pTensorViews;
} VkWriteDescriptorSetTensorARM;
pub struct WriteDescriptorSetTensorARM {
s_type: vk::StructureType,
p_next: *const c_void,
tensor_view_count: u32,
p_tensor_views: *const vk::TensorViewARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.tensorViewCountis the number of elements inpTensorViews.pTensorViewsare the tensor views that will be used to update the descriptor set.
Valid Usage
VUID-VkWriteDescriptorSetTensorARM-nullDescriptor-09898
If the nullDescriptor feature is not
enabled, each element of pTensorViews must not be
VK_NULL_HANDLE
Valid Usage (Implicit)
VUID-VkWriteDescriptorSetTensorARM-sType-sType
sType must be VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_TENSOR_ARM
VUID-VkWriteDescriptorSetTensorARM-pTensorViews-parameter
pTensorViews must be a valid pointer to an array of tensorViewCount valid or VK_NULL_HANDLE VkTensorViewARM handles
VUID-VkWriteDescriptorSetTensorARM-tensorViewCount-arraylength
tensorViewCount must be greater than 0