C Specification
The VkSciSyncAttributesInfoNV structure is defined as:
// Provided by VK_NV_external_sci_sync, VK_NV_external_sci_sync2
typedef struct VkSciSyncAttributesInfoNV {
VkStructureType sType;
const void* pNext;
VkSciSyncClientTypeNV clientType;
VkSciSyncPrimitiveTypeNV primitiveType;
} VkSciSyncAttributesInfoNV;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
clientTypeis the permission type of client. -
primitiveTypeis the synchronization primitive type.
Description
NvSciSync disallows multi-signalers, therefore clients must specify their permission types as one of signaler, waiter or signaler_waiter. In addition, NvSciSync requires clients to specify which primitive type is to be used in synchronization, hence clients also need to provide the primitive type (VkFence or VkSemaphore) that will be used.
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.