[−][src]Trait graphics::character::CharacterCache
Stores characters in a buffer and loads them by demand.
Associated Types
type Texture: ImageSize
The texture type associated with the character cache.
type Error
The error type associated with the character cache.
Required methods
fn character<'a>(
&'a mut self,
font_size: FontSize,
ch: char
) -> Result<Character<'a, Self::Texture>, Self::Error>
&'a mut self,
font_size: FontSize,
ch: char
) -> Result<Character<'a, Self::Texture>, Self::Error>
Get reference to character.
Provided methods
fn width(&mut self, size: FontSize, text: &str) -> Result<Scalar, Self::Error>
Return the width for some given text.
Implementors
impl<'b, F, T: ImageSize> CharacterCache for GlyphCache<'b, F, T> where
T: CreateTexture<F> + UpdateTexture<F>,
[src]
T: CreateTexture<F> + UpdateTexture<F>,