fae 0.6.0

A simple and fast 2D rendering crate with optional window creation and text rendering functionality.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "font8x8")]
pub mod font8x8;
#[cfg(feature = "font8x8")]
pub(crate) use self::font8x8::Font8x8Provider;

#[cfg(feature = "ttf")]
mod rusttype;
#[cfg(feature = "ttf")]
pub(crate) use self::rusttype::RustTypeProvider;