[go: up one dir, main page]

winit 0.5.11

Cross-platform window creation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]

pub use self::window::{PollEventsIterator, WaitEventsIterator, Window, WindowProxy};
pub use self::context::{WaylandContext, MonitorId, get_available_monitors,
                        get_primary_monitor};

extern crate wayland_kbd;
extern crate wayland_window;

mod context;
mod keyboard;
mod window;