baseview 0.1.3

Low-level windowing system geared towards making audio plugin UIs.
Documentation
#![allow(unsafe_code)]

//! A set of safe wrappers around C or platform APIs.
//!
//! This module is designed to contain all unsafe code necessary for baseview to work, where safe
//! APIs do not yet exist in the Rust ecosystem (e.g. Win32, Xlib, GLX), or are not practical to use.
//!
//! These wrappers are not designed to fully encapsulate their respective APIs, only the bits used
//! by baseview.
//!
//! However, all of these APIs should always be sound (i.e. no UB can be triggered by safe code).
//! Otherwise, this should be considered a bug and reported accordingly.

/// Wrappers and utilities around Xlib. (provided by x11_dl)
#[cfg(target_os = "linux")]
pub mod xlib;

/// Wrappers and utilities around xkbcommon. (provided by xkbcommon_dl)
#[cfg(target_os = "linux")]
pub mod xkbcommon;

/// Wrappers and utilities around GLX
#[cfg(all(target_os = "linux", feature = "opengl"))]
pub mod glx;

#[cfg(target_os = "linux")]
pub mod connection_poller;

/// Wrappers and utilities around the Win32 API
#[cfg(target_os = "windows")]
pub mod win32;

#[cfg(target_os = "macos")]
pub mod appkit;