C Specification

Information about the tensor view to get descriptor buffer capture data for is passed in a VkTensorViewCaptureDescriptorDataInfoARM structure:

// Provided by VK_EXT_descriptor_buffer with VK_ARM_tensors
typedef struct VkTensorViewCaptureDescriptorDataInfoARM {
    VkStructureType    sType;
    const void*        pNext;
    VkTensorViewARM    tensorView;
} VkTensorViewCaptureDescriptorDataInfoARM;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • tensorView is the VkTensorViewARM handle of the tensor view to get opaque capture data for.

Description

Valid Usage
  • VUID-VkTensorViewCaptureDescriptorDataInfoARM-tensorView-09709
    If tensorView is not VK_NULL_HANDLE then tensorView must 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

See Also

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.

Copyright 2014-2025 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0