Function Prototype
vkCreateSurfaceOHOS
Create a slink:VkSurfaceKHR object for an Open Harmony OS native window
To create a VkSurfaceKHR object on Open Harmony OS platform, call:
VkResult vkCreateSurfaceOHOS(
VkInstance instance,
const VkSurfaceCreateInfoOHOS* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSurfaceKHR* pSurface);
pub fn create_surface_ohos(
instance: vk::Instance,
p_create_info: *const vk::SurfaceCreateInfoOHOS,
p_allocator: *const vk::AllocationCallbacks,
p_surface: *mut vk::SurfaceKHR,
) -> vk::Result;
instanceis the instance to associate the surface with.pCreateInfois a pointer to a VkSurfaceCreateInfoOHOS 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.
Valid Usage (Implicit)
VUID-vkCreateSurfaceOHOS-instance-parameter
instance must be a valid VkInstance handle
VUID-vkCreateSurfaceOHOS-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkSurfaceCreateInfoOHOS structure
VUID-vkCreateSurfaceOHOS-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateSurfaceOHOS-pSurface-parameter
pSurface must be a valid pointer to a VkSurfaceKHR handle
Parent
VK_OHOS_surfaceType
Function Prototype