Luna::Window::WindowCreationFlag

enum WindowCreationFlag : u32
{
    borderless= 0x01
    resizable= 0x02
    hidden= 0x04
}

Flags that specifies the initial state and style of the window.

Options

  • borderless

    Whether this window is borderless. One borderless window does not have border, titlebar and close/minimize/maximize buttons.

  • resizable

    Whether this window is resizable by dragging the border of the window. This flag is effective in normal and borderless mode.

  • hidden

    Window does not displayed when being created.