[][src]Struct glow_glyph::GlyphBrush

pub struct GlyphBrush<F = FontArc, H = DefaultSectionHasher> { /* fields omitted */ }

Object allowing glyph drawing, containing cache state. Manages glyph positioning cacheing, glyph draw caching & efficient GPU texture cache updating and re-sizing on demand.

Build using a GlyphBrushBuilder.

Implementations

impl<F: Font, H: BuildHasher> GlyphBrush<F, H>[src]

pub fn queue<'a, S>(&mut self, section: S) where
    S: Into<Cow<'a, Section<'a>>>, 
[src]

Queues a section/layout to be drawn by the next call of draw_queued. Can be called multiple times to queue multiple sections for drawing.

Benefits from caching, see caching behaviour.

pub fn queue_custom_layout<'a, S, G>(&mut self, section: S, custom_layout: &G) where
    G: GlyphPositioner,
    S: Into<Cow<'a, Section<'a>>>, 
[src]

Queues a section/layout to be drawn by the next call of draw_queued. Can be called multiple times to queue multiple sections for drawing.

Used to provide custom GlyphPositioner logic, if using built-in Layout simply use queue

Benefits from caching, see caching behaviour.

pub fn queue_pre_positioned(
    &mut self,
    glyphs: Vec<SectionGlyph>,
    extra: Vec<Extra>,
    bounds: Rect
)
[src]

Queues pre-positioned glyphs to be processed by the next call of draw_queued. Can be called multiple times.

pub fn keep_cached_custom_layout<'a, S, G>(
    &mut self,
    section: S,
    custom_layout: &G
) where
    S: Into<Cow<'a, Section<'a>>>,
    G: GlyphPositioner
[src]

Retains the section in the cache as if it had been used in the last draw-frame.

Should not be necessary unless using multiple draws per frame with distinct transforms, see caching behaviour.

pub fn keep_cached<'a, S>(&mut self, section: S) where
    S: Into<Cow<'a, Section<'a>>>, 
[src]

Retains the section in the cache as if it had been used in the last draw-frame.

Should not be necessary unless using multiple draws per frame with distinct transforms, see caching behaviour.

pub fn fonts(&self) -> &[F][src]

Returns the available fonts.

The FontId corresponds to the index of the font data.

pub fn add_font(&mut self, font: F) -> FontId[src]

Adds an additional font to the one(s) initially added on build.

Returns a new FontId to reference this font.

impl<F: Font + Sync, H: BuildHasher> GlyphBrush<F, H>[src]

pub fn draw_queued(
    &mut self,
    context: &Context,
    target_width: u32,
    target_height: u32
) -> Result<(), String>
[src]

Draws all queued sections onto a render target. See queue.

Trims the cache, see caching behaviour.

Panics

Panics if the provided target has a texture format that does not match the render_format provided on creation of the GlyphBrush.

pub fn draw_queued_with_transform(
    &mut self,
    context: &Context,
    transform: [f32; 16]
) -> Result<(), String>
[src]

Draws all queued sections onto a render target, applying a position transform (e.g. a projection). See queue.

Trims the cache, see caching behaviour.

Panics

Panics if the provided target has a texture format that does not match the render_format provided on creation of the GlyphBrush.

pub fn draw_queued_with_transform_and_scissoring(
    &mut self,
    context: &Context,
    transform: [f32; 16],
    region: Region
) -> Result<(), String>
[src]

Draws all queued sections onto a render target, applying a position transform (e.g. a projection) and a scissoring region. See queue.

Trims the cache, see caching behaviour.

Panics

Panics if the provided target has a texture format that does not match the render_format provided on creation of the GlyphBrush.

Trait Implementations

impl<F, H> Debug for GlyphBrush<F, H>[src]

impl<F: Font, H: BuildHasher> GlyphCruncher<F, Extra> for GlyphBrush<F, H>[src]

Auto Trait Implementations

impl<F, H> RefUnwindSafe for GlyphBrush<F, H> where
    F: RefUnwindSafe,
    H: RefUnwindSafe

impl<F, H> Send for GlyphBrush<F, H> where
    F: Send,
    H: Send

impl<F, H> Sync for GlyphBrush<F, H> where
    F: Sync,
    H: Sync

impl<F, H> Unpin for GlyphBrush<F, H> where
    F: Unpin,
    H: Unpin

impl<F, H> UnwindSafe for GlyphBrush<F, H> where
    F: UnwindSafe,
    H: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,