Class VkXlibSurfaceCreateInfoKHR

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


    public class VkXlibSurfaceCreateInfoKHR
    extends Struct
    Khronos Reference Page
    Vulkan Specification

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

    Valid Usage

    Member documentation

    • sType – the type of this structure. Must be: STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR
    • pNext – reserved for use by extensions
    • flags – reserved for future use
    • dpy – a pointer to an Xlib Display connection to the X server
    • window – an Xlib Window to associate the surface with

    Layout

    struct VkXlibSurfaceCreateInfoKHR {
        VkStructureType sType;
        const void * pNext;
        VkXlibSurfaceCreateFlagsKHR flags;
        Display * dpy;
        Window window;
    }