C Specification

The VkImportFenceSciSyncInfoNV structure is defined as:

// Provided by VK_NV_external_sci_sync, VK_NV_external_sci_sync2
typedef struct VkImportFenceSciSyncInfoNV {
    VkStructureType                      sType;
    const void*                          pNext;
    VkFence                              fence;
    VkExternalFenceHandleTypeFlagBits    handleType;
    void*                                handle;
} VkImportFenceSciSyncInfoNV;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • fence is the fence into which the state will be imported.

  • handleType specifies the type of handle.

  • handle is the external handle to import.

Description

The handle types supported by handleType are:

Table 1. Handle Types Supported by VkImportFenceSciSyncInfoNV
Handle Type Transference Permanence Supported

VK_EXTERNAL_FENCE_HANDLE_TYPE_SCI_SYNC_OBJ_BIT_NV

Reference

Permanent

VK_EXTERNAL_FENCE_HANDLE_TYPE_SCI_SYNC_FENCE_BIT_NV

Copy

Temporary

Valid Usage (Implicit)
  • VUID-VkImportFenceSciSyncInfoNV-sType-sType
    sType must be VK_STRUCTURE_TYPE_IMPORT_FENCE_SCI_SYNC_INFO_NV

  • VUID-VkImportFenceSciSyncInfoNV-pNext-pNext
    pNext must be NULL

  • VUID-VkImportFenceSciSyncInfoNV-fence-parameter
    fence must be a valid VkFence handle

  • VUID-VkImportFenceSciSyncInfoNV-handleType-parameter
    handleType must be a valid VkExternalFenceHandleTypeFlagBits value

  • VUID-VkImportFenceSciSyncInfoNV-handle-parameter
    handle must be a pointer value

Host Synchronization
  • Host access to fence must be externally synchronized

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