slate-text 1.0.1

Native text shaping and rasterization for the slate-framework UI framework
1
2
3
4
5
6
7
8
9
10
//! Platform-specific text backend implementations.
//!
//! These submodules are crate-internal; backend types are re-exported at the
//! `slate_text` crate root (`DirectWriteBackend`, `CoreTextBackend`).

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

#[cfg(target_os = "windows")]
pub(crate) mod windows;