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
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
fenceis the fence into which the state will be imported. -
handleTypespecifies the type ofhandle. -
handleis the external handle to import.
Description
The handle types supported by handleType are:
| Handle Type | Transference | Permanence Supported |
|---|---|---|
|
Reference |
Permanent |
|
Copy |
Temporary |
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.