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

borderless: bool

If the window should be borderless (default: false)

title: bool

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

resize: bool

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

scale: Scale

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