Struct mini_gl_fb::config::ConfigBuilder[][src]

pub struct ConfigBuilder { /* fields omitted */ }

Builder for Config.

Implementations

impl ConfigBuilder[src]

pub fn buffer_size(&mut self, value: Option<LogicalSize<u32>>) -> &mut Self[src]

Sets the pixel dimensions of the buffer. The buffer will automatically stretch to fill the whole window. By default this will be the same as the window_size.

pub fn resizable(&mut self, value: bool) -> &mut Self[src]

If this is true, the window created by mini_gl_fb will be set to resizable. This can be changed later. Please note that the buffer itself will not be automatically resized, only the viewport.

pub fn window_title(&mut self, value: String) -> &mut Self[src]

The title of the window that will be created.

pub fn window_size(&mut self, value: LogicalSize<f64>) -> &mut Self[src]

The logical size of the window that gets created. On HiDPI screens the actual size may be larger than this

pub fn invert_y(&mut self, value: bool) -> &mut Self[src]

By default, the origin of the buffer is the bottom-left. This is known as "inverted Y", as most screen-space coordinate systems begin from the top-left. By explicitly setting this option to false, you can switch to screen-space coordinates rather than OpenGL coordinates. Otherwise, you will have to invert all mouse events received from winit/glutin.

impl ConfigBuilder[src]

pub fn build(&self) -> Config[src]

Builds a new Config.

Trait Implementations

impl Clone for ConfigBuilder[src]

impl Default for ConfigBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.