C Specification
To create a semaphore, call:
// Provided by VK_VERSION_1_0
VkResult vkCreateSemaphore(
VkDevice device,
const VkSemaphoreCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSemaphore* pSemaphore);
Parameters
-
deviceis the logical device that creates the semaphore. -
pCreateInfois a pointer to a VkSemaphoreCreateInfo structure containing information about how the semaphore is to be created. -
pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter. -
pSemaphoreis a pointer to a handle in which the resulting semaphore object is returned.
Description
If VkSemaphoreSciSyncCreateInfoNV is included in the pNext chain
of VkSemaphoreCreateInfo,
VkSemaphoreSciSyncCreateInfoNV::semaphorePool may be accessed
any time the resulting semaphore is accessed.
If
VkPhysicalDeviceVulkanSC10Properties::deviceNoDynamicHostAllocations
is VK_TRUE, vkCreateSemaphore must not return
VK_ERROR_OUT_OF_HOST_MEMORY.
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.