telar-platform-desktop 0.1.0

Desktop platform backend for Telar: winit event loop, system paths and OS color-scheme detection.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(target_os = "linux")]
mod color_scheme;
mod paths;
pub mod platform;

pub use paths::DesktopPathsProvider;
pub use platform::{WinitPlatform, request_dynamic_surface};
// Re-exported from the shared winit backend so desktop consumers get the runner and its window type from one crate.
pub use platform_winit::WinitWindow;