Enum
VkSciSyncPrimitiveTypeNV
Enums specifying the primitive types
The VkSciSyncPrimitiveTypeNV enum is defined as:
typedef enum VkSciSyncPrimitiveTypeNV {
VK_SCI_SYNC_PRIMITIVE_TYPE_FENCE_NV = 0,
VK_SCI_SYNC_PRIMITIVE_TYPE_SEMAPHORE_NV = 1,
} VkSciSyncPrimitiveTypeNV;
pub struct SciSyncPrimitiveTypeNV(u32);
impl SciSyncPrimitiveTypeNV {
pub const FENCE: Self = 0;
pub const SEMAPHORE: Self = 1;
}
VK_SCI_SYNC_PRIMITIVE_TYPE_FENCE_NVspecifies that the synchronization primitive type the client will create is a VkFence.VK_SCI_SYNC_PRIMITIVE_TYPE_SEMAPHORE_NVspecifies that the synchronization primitive type the client will create is a VkSemaphore.
Type
Enum