mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
31 lines
735 B
Rust
31 lines
735 B
Rust
// TODO: close events (port from old stdweb branch)
|
|
// TODO: pointer locking (stdweb PR required)
|
|
// TODO: fullscreen API (stdweb PR required)
|
|
|
|
mod device;
|
|
mod error;
|
|
mod event_loop;
|
|
mod monitor;
|
|
mod window;
|
|
|
|
#[cfg(feature = "web-sys")]
|
|
#[path = "web_sys/mod.rs"]
|
|
mod backend;
|
|
|
|
#[cfg(feature = "stdweb")]
|
|
#[path = "stdweb/mod.rs"]
|
|
mod backend;
|
|
|
|
pub use self::device::Id as DeviceId;
|
|
pub use self::error::OsError;
|
|
pub use self::event_loop::{
|
|
EventLoop, Proxy as EventLoopProxy, WindowTarget as EventLoopWindowTarget,
|
|
};
|
|
pub use self::monitor::{
|
|
Handle as MonitorHandle, Mode as VideoMode
|
|
};
|
|
pub use self::window::{
|
|
Id as WindowId, PlatformSpecificBuilderAttributes as PlatformSpecificWindowBuilderAttributes,
|
|
Window,
|
|
};
|