Struct sdl2::ttf::PartialRendering [−][src]
pub struct PartialRendering<'f, 'text> { /* fields omitted */ }Expand description
A builder for a font rendering.
Implementations
Renders the text in solid mode. See the SDL2_TTF docs for an explanation.
Renders the text in shaded mode. See the SDL2_TTF docs for an explanation.
Renders the text in blended mode. See the SDL2_TTF docs for an explanation.
pub fn blended_wrapped<'b, T>(
self,
color: T,
wrap_max_width: u32
) -> FontResult<Surface<'b>> where
T: Into<Color>,
pub fn blended_wrapped<'b, T>(
self,
color: T,
wrap_max_width: u32
) -> FontResult<Surface<'b>> where
T: Into<Color>,
Renders the text in blended mode but wrapping the words if the width exceeds the given maximum width. See the SDL2_TTF docs for an explanation of the mode.