Use new fullscreen API in example

This commit is contained in:
Pedro Côrte-Real 2017-08-29 01:50:11 +01:00
parent 9693f7caa9
commit b3ef9c8b22

View file

@ -1,7 +1,7 @@
extern crate winit; extern crate winit;
use std::io::{self, Write}; use std::io::{self, Write};
use winit::{ControlFlow, Event, WindowEvent}; use winit::{ControlFlow, Event, WindowEvent, FullScreenState};
fn main() { fn main() {
// enumerating monitors // enumerating monitors
@ -27,7 +27,7 @@ fn main() {
let _window = winit::WindowBuilder::new() let _window = winit::WindowBuilder::new()
.with_title("Hello world!") .with_title("Hello world!")
.with_fullscreen(monitor) .with_fullscreen(FullScreenState::Exclusive(monitor))
.build(&events_loop) .build(&events_loop)
.unwrap(); .unwrap();