Enum minifb::Scale [] [src]

pub enum Scale {
    FitScreen,
    X1,
    X2,
    X4,
    X8,
    X16,
    X32,
}

Scale will scale the frame buffer and the window that is being sent in when calling the update function. This is useful if you for example want to display a 320 x 256 window on a screen with much higher resolution which would result in that the window is very small.

Variants

This mode checks your current screen resolution and will caluclate the largest window size that can be used within that limit and resize it. Useful if you have a small buffer to display on a high resolution screen.

1X scale (which means leave the corrdinates sent into Window::new untouched)

2X window scale (Example: 320 x 200 -> 640 x 400)

4X window scale (Example: 320 x 200 -> 1280 x 800)

8X window scale (Example: 320 x 200 -> 2560 x 1600)

16X window scale (Example: 320 x 200 -> 5120 x 3200)

32 window scale (Example: 320 x 200 -> 10240 x 6400)

Trait Implementations

impl Clone for Scale
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Scale
[src]