C Specification
The VkSemaphoreSciSyncCreateInfoNV structure is defined as:
// Provided by VK_NV_external_sci_sync2
typedef struct VkSemaphoreSciSyncCreateInfoNV {
VkStructureType sType;
const void* pNext;
VkSemaphoreSciSyncPoolNV semaphorePool;
const NvSciSyncFence* pFence;
} VkSemaphoreSciSyncCreateInfoNV;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
semaphorePoolis a VkSemaphoreSciSyncPoolNV handle. -
pFenceis a pointer to aNvSciSyncFence.
Description
When VkSemaphoreSciSyncCreateInfoNV is included in
VkSemaphoreCreateInfo::pNext chain, the semaphore is created
from the VkSemaphoreSciSyncPoolNV handle that represents a
NvSciSyncObj with one or more primitives.
The VkSemaphoreSciSyncCreateInfoNV::pFence parameter provides
the information to select the corresponding primitive represented by this
semaphore.
When a NvSciSyncObj with signaler permissions is imported to
VkSemaphoreSciSyncPoolNV, it only supports one primitive and
VkSemaphoreSciSyncCreateInfoNV::pFence must be in the cleared
state.
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.