Skip to main content

zenith_core/font/
mod.rs

1//! Font sourcing layer: provider trait, data types, and the bundled default.
2
3pub mod embedded;
4pub mod local;
5mod provider;
6
7pub use local::{LocalFontEntry, scan_font_dirs};
8pub use provider::{
9    BytesFontProvider, FontData, FontProvider, FontSource, FontStyle, default_provider,
10};