C Specification

// Provided by VK_NV_cluster_acceleration_structure
typedef struct VkClusterAccelerationStructureMoveObjectsInputNV {
    VkStructureType                         sType;
    void*                                   pNext;
    VkClusterAccelerationStructureTypeNV    type;
    VkBool32                                noMoveOverlap;
    VkDeviceSize                            maxMovedBytes;
} VkClusterAccelerationStructureMoveObjectsInputNV;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • type is a VkClusterAccelerationStructureTypeNV value identifying the type of cluster acceleration structure.

  • noMoveOverlap specifies if the source and destination cluster acceleration structures overlap in memory for the move operation. If set to VK_TRUE, the source cluster acceleration structure remains valid after the move and move operation acts like a copy.

  • maxMovedBytes is the maximum number of bytes that may be moved in this operation.

Description

Valid Usage (Implicit)
  • VUID-VkClusterAccelerationStructureMoveObjectsInputNV-sType-sType
    sType must be VK_STRUCTURE_TYPE_CLUSTER_ACCELERATION_STRUCTURE_MOVE_OBJECTS_INPUT_NV

  • VUID-VkClusterAccelerationStructureMoveObjectsInputNV-pNext-pNext
    pNext must be NULL

  • VUID-VkClusterAccelerationStructureMoveObjectsInputNV-type-parameter
    type must be a valid VkClusterAccelerationStructureTypeNV value

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