Function Prototype
vkCreateSemaphore
Create a new queue semaphore object
To create a semaphore, call:
VkResult vkCreateSemaphore(
VkDevice device,
const VkSemaphoreCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSemaphore* pSemaphore);
pub fn create_semaphore(
device: vk::Device,
p_create_info: *const vk::SemaphoreCreateInfo,
p_allocator: *const vk::AllocationCallbacks,
p_semaphore: *mut vk::Semaphore,
) -> vk::Result;
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.
Valid Usage (Implicit)
VUID-vkCreateSemaphore-device-parameter
device must be a valid VkDevice handle
VUID-vkCreateSemaphore-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkSemaphoreCreateInfo structure
VUID-vkCreateSemaphore-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateSemaphore-pSemaphore-parameter
pSemaphore must be a valid pointer to a VkSemaphore handle
VUID-vkCreateSemaphore-device-queuecount
The device must have been created with at least 1 queue
Parent
VK_VERSION_1_0Type
Function Prototype
Return Values
VK_SUCCESS
VK_ERROR_OUT_OF_HOST_MEMORY
VK_ERROR_OUT_OF_DEVICE_MEMORY
VK_ERROR_UNKNOWN
VK_ERROR_VALIDATION_FAILED