C Specification
To create a VkSemaphoreSciSyncPoolNV, call:
// Provided by VK_NV_external_sci_sync2
VkResult vkCreateSemaphoreSciSyncPoolNV(
VkDevice device,
const VkSemaphoreSciSyncPoolCreateInfoNV* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSemaphoreSciSyncPoolNV* pSemaphorePool);
Parameters
-
deviceis the logical device that creates the semaphore pool. -
pCreateInfois a pointer to a VkSemaphoreSciSyncPoolCreateInfoNV structure containing information about the semaphore SciSync pool being created. -
pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter. -
pSemaphorePoolis a pointer to a handle in which the resulting semaphore pool object is returned.
Description
If
VkPhysicalDeviceVulkanSC10Properties::deviceNoDynamicHostAllocations
is VK_TRUE, vkCreateSemaphoreSciSyncPoolNV 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.