Structures
VkTensorViewCaptureDescriptorDataInfoARM
Structure specifying a tensor view for descriptor capture
Information about the tensor view to get descriptor buffer capture data for
is passed in a VkTensorViewCaptureDescriptorDataInfoARM structure:
typedef struct VkTensorViewCaptureDescriptorDataInfoARM {
VkStructureType sType;
const void* pNext;
VkTensorViewARM tensorView;
} VkTensorViewCaptureDescriptorDataInfoARM;
pub struct TensorViewCaptureDescriptorDataInfoARM {
s_type: vk::StructureType,
p_next: *const c_void,
tensor_view: vk::TensorViewARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.tensorViewis theVkTensorViewARMhandle of the tensor view to get opaque capture data for.
Valid Usage
VUID-VkTensorViewCaptureDescriptorDataInfoARM-tensorView-09709
If tensorView is not VK_NULL_HANDLE then tensorViewmust have been created with
VK_TENSOR_VIEW_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_ARM set
in VkTensorViewCreateInfoARM::flags
Valid Usage (Implicit)
VUID-VkTensorViewCaptureDescriptorDataInfoARM-sType-sType
sType must be VK_STRUCTURE_TYPE_TENSOR_VIEW_CAPTURE_DESCRIPTOR_DATA_INFO_ARM
VUID-VkTensorViewCaptureDescriptorDataInfoARM-pNext-pNext
pNext must be NULL
VUID-VkTensorViewCaptureDescriptorDataInfoARM-tensorView-parameter
tensorView must be a valid VkTensorViewARM handle
Parent
VK_ARM_tensorsType
Structures