iced-yoda/core/src/font.rs

19 lines
392 B
Rust
Raw Normal View History

2019-11-18 07:16:19 +01:00
/// A font.
#[derive(Debug, Clone, Copy)]
pub enum Font {
2019-11-18 07:16:19 +01:00
/// The default font.
///
/// This is normally a font configured in a renderer or loaded from the
/// system.
Default,
2019-11-18 07:16:19 +01:00
/// An external font.
External {
2019-11-18 07:16:19 +01:00
/// The name of the external font
name: &'static str,
2019-11-18 07:16:19 +01:00
/// The bytes of the external font
bytes: &'static [u8],
},
}