Trait graphics::character::CharacterCache [−][src]
pub trait CharacterCache { type Texture: ImageSize; type Error; fn character<'a>(
&'a mut self,
font_size: FontSize,
ch: char
) -> Result<Character<'a, Self::Texture>, Self::Error>; fn width(
&mut self,
size: FontSize,
text: &str
) -> Result<Scalar, Self::Error> { ... } }
Stores characters in a buffer and loads them by demand.
Associated Types
type Texture: ImageSize
[src]
The texture type associated with the character cache.
type Error
[src]
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>
[src]
&'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>
[src]
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>,