Struct glium_graphics::GliumWindow [] [src]

pub struct GliumWindow<W = GlutinWindow> {
    pub window: Rc<RefCell<W>>,
    pub context: Rc<Context>,
    pub events: Events,
}

A window struct for glium.

Fields

Window.

Glium context.

Event loop state.

Methods

impl<W> GliumWindow<W> where
    W: OpenGLWindow + 'static, 
[src]

Creates new GliumWindow.

Returns new frame.

Returns next event.

Methods from Deref<Target = Context>

Calls get_framebuffer_dimensions on the backend object stored by this context.

Changes the OpenGL context associated with this context.

The new context must have lists shared with the old one.

Swaps the buffers in the backend.

DEPRECATED. Use get_opengl_version instead.

Returns the OpenGL version detected by this context.

Returns the GLSL version guaranteed to be supported.

Returns true if the given GLSL version is supported.

Returns a string containing this GL version or release number used by this context.

Vendor-specific information may follow the version number.

Returns a string containing the company responsible for this GL implementation.

Returns a string containing the name of the GL renderer used by this context.

This name is typically specific to a particular configuration of a hardware platform.

Returns true if the context is in debug mode.

Debug mode may provide additional error and performance issue reporting functionality.

Returns true if the context is in "forward-compatible" mode.

Forward-compatible mode means that no deprecated functionality will be supported.

Returns this context's OpenGL profile if available.

The context profile is available from OpenGL 3.2 onwards. Returns None if not supported.

Returns true if out-of-bound buffer access from the GPU side (inside a program) cannot result in a crash.

You should take extra care if is_robust returns false.

Returns true if a context loss is possible.

Returns true if the context has been lost and needs to be recreated.

Implementation

If it has been determined that the context has been lost before, then the function immediatly returns true. Otherwise, calls glGetGraphicsResetStatus. If this function is not available, returns false.

Returns the behavior when the current OpenGL context is changed.

The most common value is Flush. In order to get None you must explicitely request it during creation.

Returns the maximum value that can be used for anisotropic filtering, or None if the hardware doesn't support it.

Returns the maximum dimensions of the viewport.

Glium will panic if you request a larger viewport than this when drawing.

Releases the shader compiler, indicating that no new programs will be created for a while.

This method is a no-op if it's not available in the implementation.

Returns an estimate of the amount of video memory available in bytes.

Returns None if no estimate is available.

Reads the content of the front buffer.

You will only see the data that has finished being drawn.

This function can return any type that implements Texture2dDataSink<(u8, u8, u8, u8)>.

Example

let pixels: Vec<Vec<(u8, u8, u8, u8)>> = display.read_front_buffer();

Execute an arbitrary closure with the OpenGL context active. Useful if another component needs to directly manipulate OpenGL state.

If action manipulates any OpenGL state, it must be restored before action completes.

Asserts that there are no OpenGL errors pending.

This function should be used in tests.

DEPRECATED. Renamed finish.

Calls glFinish(). This waits until all the previously issued commands have finished being executed.

When you execute OpenGL functions, they are not executed immediately. Instead they are put in a queue. This function flushes this queue, then waits until all commands have finished being executed.

You normally don't need to call this function manually, except for debugging purposes.

Calls glFlush(). This starts executing the commands that you have issued if it is not yet the case.

When you execute OpenGL functions, they are not executed immediately. Instead they are put in a queue. This function flushes this queue so that commands start being executed.

You normally don't need to call this function manually. Swapping buffers automatically flushes the queue. This function can be useful if you want to benchmark the time it takes from your OpenGL driver to process commands.

Inserts a debugging string in the commands queue. If you use an OpenGL debugger, you will be able to see that string.

This is helpful to understand where you are when you have big applications.

Returns Err if the backend doesn't support this functionnality. You can choose whether to call .unwrap() if you want to make sure that it works, or .ok() if you don't care.

Same as insert_debug_marker, except that if you don't compile with debug_assertions it is a no-op and returns Ok.

Trait Implementations

impl<W> Deref for GliumWindow<W>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<W> Clone for GliumWindow<W>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<W> BuildFromWindowSettings for GliumWindow<W> where
    W: 'static + Window + OpenGLWindow + BuildFromWindowSettings, 
[src]

Builds the window from a WindowSettings object. Read more

impl<W> Facade for GliumWindow<W>
[src]

Returns an opaque type that contains the OpenGL state, extensions, version, etc.

impl<W> Window for GliumWindow<W> where
    W: Window, 
[src]

Returns true if the window should close.

Tells the window to close or stay open.

Gets the size of the window.

Gets the draw size of the window. Read more

Swaps render buffers. Read more

Polls an input event from the window. 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

impl<W> AdvancedWindow for GliumWindow<W> where
    W: AdvancedWindow, 
[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<W> EventLoop for GliumWindow<W>
[src]

Returns event loop settings.

Sets event loop settings.

The number of updates per second Read more

The number of updates per second Read more

The number of delayed updates before skipping them to catch up. When set to 0, it will always try to catch up. Read more

The number of delayed updates before skipping them to catch up. When set to 0, it will always try to catch up. Read more

The maximum number of frames per second Read more

The maximum number of frames per second Read more

Enable or disable automatic swapping of buffers.

Enable or disable automatic swapping of buffers.

Enable or disable benchmark mode. When enabled, it will render and update without sleep and ignore input. Used to test performance by playing through as fast as possible. Requires lazy to be set to false. Read more

Enable or disable benchmark mode. When enabled, it will render and update without sleep and ignore input. Used to test performance by playing through as fast as possible. Requires lazy to be set to false. Read more

Enable or disable rendering only when receiving input. When enabled, update events are disabled. Idle events are emitted while receiving input. Read more

Enable or disable rendering only when receiving input. When enabled, update events are disabled. Idle events are emitted while receiving input. Read more