portlight 0.0.2

Cross-platform window management for audio plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod backend;
mod error;
mod event_loop;
mod timer;
mod window;

#[cfg(feature = "_test")]
pub mod tests;

pub use error::{Error, Result};
pub use event_loop::{EventLoop, EventLoopMode, EventLoopOptions};
pub use timer::Timer;
pub use window::{
    Bitmap, Cursor, Event, MouseButton, Point, RawWindow, Rect, Response, Size, Window,
    WindowOptions,
};