graphics/glyph_cache/
mod.rs

1//! Implementations of the `CharacterCache` trait.
2//!
3//! Enabled through Cargo features.
4//!
5//! ### RustType
6//!
7//! Add the following to "Cargo.toml":
8//!
9//! ```ignore
10//! [dependencies.piston2d-graphics]
11//! version = "*"
12//! features = ["glyph_cache_rusttype"]
13//! ```
14
15#[cfg(feature = "glyph_cache_rusttype")]
16pub mod rusttype;