Class VkWin32SurfaceCreateInfoKHR

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class VkWin32SurfaceCreateInfoKHR
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Contains information about how a surface for a Win32 window should be created.

    Valid Usage

    Member documentation

    • sType – the type of this structure. Must be: STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR
    • pNext – reserved for use by extensions
    • flags – reserved for future use
    • hinstance – the WIN32 HINSTANCE for the window to associate the surface with
    • hwnd – the WIN32 HWND for the window to associate the surface with

    Layout

    struct VkWin32SurfaceCreateInfoKHR {
        VkStructureType sType;
        const void * pNext;
        VkWin32SurfaceCreateFlagsKHR flags;
        HINSTANCE hinstance;
        HWND hwnd;
    }