Function Prototype
vkCreateIOSSurfaceMVK
Create a VkSurfaceKHR object for an iOS UIView
To create a VkSurfaceKHR object for an iOS UIView or
CAMetalLayer, call:
VkResult vkCreateIOSSurfaceMVK(
VkInstance instance,
const VkIOSSurfaceCreateInfoMVK* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSurfaceKHR* pSurface);
pub fn create_ios_surface_mvk(
instance: vk::Instance,
p_create_info: *const vk::IOSSurfaceCreateInfoMVK,
p_allocator: *const vk::AllocationCallbacks,
p_surface: *mut vk::SurfaceKHR,
) -> vk::Result;
instanceis the instance with which to associate the surface.pCreateInfois a pointer to a VkIOSSurfaceCreateInfoMVK structure containing parameters affecting the creation of the surface object.pAllocatoris the allocator used for host memory allocated for the surface object when there is no more specific allocator available (see Memory Allocation).pSurfaceis a pointer to a VkSurfaceKHR handle in which the created surface object is returned.
The
vkCreateIOSSurfaceMVK function is considered legacy and has been
superseded by vkCreateMetalSurfaceEXT from the
VK_EXT_metal_surface extension.Valid Usage (Implicit)
VUID-vkCreateIOSSurfaceMVK-instance-parameter
instance must be a valid VkInstance handle
VUID-vkCreateIOSSurfaceMVK-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkIOSSurfaceCreateInfoMVK structure
VUID-vkCreateIOSSurfaceMVK-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateIOSSurfaceMVK-pSurface-parameter
pSurface must be a valid pointer to a VkSurfaceKHR handle
Parent
VK_MVK_ios_surfaceType
Function Prototype
Return Values
VK_SUCCESS
VK_ERROR_OUT_OF_HOST_MEMORY
VK_ERROR_OUT_OF_DEVICE_MEMORY
VK_ERROR_NATIVE_WINDOW_IN_USE_KHR
VK_ERROR_UNKNOWN
VK_ERROR_VALIDATION_FAILED