C Specification
The VkOHSurfaceCreateInfoOHOS
structure is defined as:
// Provided by VK_OHOS_surface
typedef struct VkOHSurfaceCreateInfoOHOS {
VkStructureType sType;
const void* pNext;
VkSurfaceCreateFlagsOHOS flags;
OHNativeWindow* window;
} VkOHSurfaceCreateInfoOHOS;
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
flags
is reserved for future use. -
window
: the pointer to a OHNativeWindow to associate the surface with.
or the equivalent
// Provided by VK_OHOS_surface
typedef VkOHSurfaceCreateInfoOHOS VkSurfaceCreateInfoOHOS;
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.