ventana-hal 0.0.1

A cross-platform, iterator-based windowing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod backend;
#[macro_use]
pub mod error;
pub mod event;
pub mod input;
pub mod settings;
pub mod types;
pub mod window;

#[cfg(raw_window_handle_v5)]
pub use rwh_05 as raw_window_handle;
#[cfg(raw_window_handle_v6)]
pub use rwh_06 as raw_window_handle;
pub use {
  dpi,
  keyboard_types as keyboard,
};