C Specification

The VkFrameBoundaryTensorsARM structure is defined as:

// Provided by VK_EXT_frame_boundary with VK_ARM_tensors
typedef struct VkFrameBoundaryTensorsARM {
    VkStructureType       sType;
    const void*           pNext;
    uint32_t              tensorCount;
    const VkTensorARM*    pTensors;
} VkFrameBoundaryTensorsARM;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • tensorCount is the number of tensors that store frame results.

  • pTensors is a pointer to an array of VkTensorARM objects with tensorCount entries.

Description

Valid Usage (Implicit)
  • VUID-VkFrameBoundaryTensorsARM-sType-sType
    sType must be VK_STRUCTURE_TYPE_FRAME_BOUNDARY_TENSORS_ARM

  • VUID-VkFrameBoundaryTensorsARM-pTensors-parameter
    pTensors must be a valid pointer to an array of tensorCount valid VkTensorARM handles

  • VUID-VkFrameBoundaryTensorsARM-tensorCount-arraylength
    tensorCount must be greater than 0

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