A fast text render for wgpu, powered by glyph-brush
```rust use gfx_glyph::{Section, GlyphBrushBuilder};
let font: &[u8] = includebytes!("SomeFont.ttf"); let mut glyphbrush = GlyphBrushBuilder::usingfontbytes(font) .build(&mut device);
let section = Section { text: "Hello wgpu_glyph", ..Section::default() // color, position, etc };
glyphbrush.queue(section); glyphbrush.queue(someothersection);
glyphbrush.drawqueued( &mut device, &mut encoder, &frame.view, frame.width.round() as u32, frame.height.round() as u32, );
device.get_queue().submit(&[encoder.finish()]); ```
Have a look at
* cargo run --example hello --features wgpu/vulkan --release