baseview 0.1.4

Low-level windowing system geared towards making audio plugin UIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "opengl")]
mod error_handler;
mod xlib_connection;
mod xlib_xcb;

pub use xlib_xcb::XlibXcbConnection;

#[cfg(feature = "opengl")]
pub use self::{
    error_handler::{XErrorHandler, XLibError},
    xlib_connection::XlibConnection,
};