Struct glfw_window::GlfwWindow [] [src]

pub struct GlfwWindow {
    pub window: Window,
    pub glfw: Glfw,
    // some fields omitted
}

Contains stuff for game window.

Fields

The window.

GLFW context.

Methods

impl GlfwWindow
[src]

Create a new game window from an existing GLFW window.

Creates a new game window for GLFW.

Trait Implementations

impl BuildFromWindowSettings for GlfwWindow
[src]

Builds the window from a WindowSettings object. Read more

impl Window for GlfwWindow
[src]

Gets the size of the window.

Gets the draw size of the window. Read more

Tells the window to close or stay open.

Returns true if the window should close.

Swaps render buffers. Read more

Wait indefinitely for an input event to be available from the window.

Wait for an input event to be available from the window or for the specified timeout to be reached. Read more

Polls an input event from the window. Read more

impl AdvancedWindow for GlfwWindow
[src]

Gets a copy of the title of the window.

Sets the title of the window.

Gets whether to exit when pressing esc. Read more

Sets whether to exit when pressing esc. Read more

Sets whether to capture/grab the cursor. Read more

Shows the window. Read more

Hides the window. Read more

Gets the position of window. Read more

Sets the position of window. Read more

Sets title on window. Read more

Sets whether to exit when pressing the Esc button. Read more

Sets whether to capture/grab the cursor. Read more

Sets the position of window. Read more

impl OpenGLWindow for GlfwWindow
[src]

Returns the address of the specified OpenGL function if it exists. Read more

Returns true if this window's gl context is the current gl context.

Make the window's gl context the current gl context.