wgpu_glyph

Integration status crates.io Documentation License

A fast text renderer for wgpu, powered by glyph_brush

```rust use wgpu_glyph::{Section, GlyphBrushBuilder};

let font: &[u8] = includebytes!("SomeFont.ttf"); let mut glyphbrush = GlyphBrushBuilder::usingfontbytes(font) .expect("Load font") .build(&device, render_format);

let section = Section { text: "Hello wgpu_glyph", ..Section::default() // color, position, etc };

glyphbrush.queue(section); glyphbrush.queue(someothersection);

glyphbrush.drawqueued( &device, &mut encoder, &frame.view, frame.width, frame.height, );

device.get_queue().submit(&[encoder.finish()]); ```

Examples

Have a look at * cargo run --example hello * Coffee, which uses wgpu_glyph to provide font rendering on the [wgpu graphics backend].