C Specification

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

// Provided by VK_EXT_descriptor_buffer with VK_ARM_tensors
typedef struct VkTensorCaptureDescriptorDataInfoARM {
    VkStructureType    sType;
    const void*        pNext;
    VkTensorARM        tensor;
} VkTensorCaptureDescriptorDataInfoARM;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • tensor is the VkTensorARM handle of the tensor to get opaque capture data for.

Description

Valid Usage
  • VUID-VkTensorCaptureDescriptorDataInfoARM-tensor-09705
    If tensor is not VK_NULL_HANDLE then tensor must have been created with VK_TENSOR_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_ARM set in VkTensorCreateInfoARM::flags

Valid Usage (Implicit)
  • VUID-VkTensorCaptureDescriptorDataInfoARM-sType-sType
    sType must be VK_STRUCTURE_TYPE_TENSOR_CAPTURE_DESCRIPTOR_DATA_INFO_ARM

  • VUID-VkTensorCaptureDescriptorDataInfoARM-pNext-pNext
    pNext must be NULL

  • VUID-VkTensorCaptureDescriptorDataInfoARM-tensor-parameter
    tensor must be a valid VkTensorARM 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