Struct minifb::WindowOptions [] [src]

pub struct WindowOptions {
    pub borderless: bool,
    pub title: bool,
    pub resize: bool,
    pub scale: Scale,
}

WindowOptions is creation settings for the window. By default the settings are defined for displayng a 32-bit buffer (no scaling of window is possible)

Fields

If the window should be borderless (default: false)

If the window should have a title (default: true)

If it should be possible to resize the window (default: false)

Scale of the window that used in conjunction with update_with_buffer (default: X1)