gfx_types 0.2.0

Core graphics types shared between kernel and userspace - RedstoneOS
Documentation
1
2
3
4
5
6
7
8
9
//! # Text Module
//!
//! Tipos básicos para tipografia.

mod font;
mod glyph;

pub use font::{FontStyle, FontWeight, TextAlign, TextBaseline};
pub use glyph::{GlyphId, GlyphMetrics};