Function Prototype
vkCreateDeferredOperationKHR
Create a deferred operation handle
To construct the tracking object for a deferred command, call:
VkResult vkCreateDeferredOperationKHR(
VkDevice device,
const VkAllocationCallbacks* pAllocator,
VkDeferredOperationKHR* pDeferredOperation);
device
is the device which ownsoperation
.pAllocator
controls host memory allocation as described in the Memory Allocation chapter.pDeferredOperation
is a pointer to a handle in which the created VkDeferredOperationKHR is returned.
Valid Usage (Implicit)
VUID-vkCreateDeferredOperationKHR-device-parameter
device
must be a valid VkDevice handle
VUID-vkCreateDeferredOperationKHR-pAllocator-parameter
If pAllocator
is not NULL
, pAllocator
must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateDeferredOperationKHR-pDeferredOperation-parameter
pDeferredOperation
must be a valid pointer to a VkDeferredOperationKHR handle