C Specification

The VkRefreshObjectListKHR structure is defined as:

// Provided by VK_KHR_object_refresh
typedef struct VkRefreshObjectListKHR {
    VkStructureType              sType;
    const void*                  pNext;
    uint32_t                     objectCount;
    const VkRefreshObjectKHR*    pObjects;
} VkRefreshObjectListKHR;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • objectCount is the number of objects to refresh.

  • pObjects is a pointer to an array of VkRefreshObjectKHR structures, defining the objects to refresh.

Description

Valid Usage (Implicit)
  • VUID-VkRefreshObjectListKHR-sType-sType
    sType must be VK_STRUCTURE_TYPE_REFRESH_OBJECT_LIST_KHR

  • VUID-VkRefreshObjectListKHR-pNext-pNext
    pNext must be NULL

  • VUID-VkRefreshObjectListKHR-pObjects-parameter
    pObjects must be a valid pointer to an array of objectCount valid VkRefreshObjectKHR structures

  • VUID-VkRefreshObjectListKHR-objectCount-arraylength
    objectCount 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-2023 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0