aetna-core 0.3.1

Aetna — backend-agnostic UI library core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Text shaping + atlas infrastructure. The unified RGBA glyph atlas
//! (color emoji + outline glyphs) lives in [`atlas`]; line measurement,
//! wrapping, and the `TextLayout` value backends consume live in
//! [`metrics`].
//!
//! The widget helpers (`h1`, `paragraph`, `text(...)`, …) live in
//! [`crate::widgets::text`] and compose against this module.

pub mod atlas;
pub mod metrics;
pub mod msdf;
pub mod msdf_atlas;