A fast text renderer for wgpu, powered by glyph_brush
use wgpu_glyph::{Section, GlyphBrushBuilder};
let font: &[u8] = include_bytes!("SomeFont.ttf");
let mut glyph_brush = GlyphBrushBuilder::using_font_bytes(font)
.expect("Load font")
.build(&device, render_format);
let section = Section {
text: "Hello wgpu_glyph",
..Section::default() // color, position, etc
};
glyph_brush.queue(section);
glyph_brush.queue(some_other_section);
glyph_brush.draw_queued(
&device,
&mut encoder,
&frame.view,
frame.width,
frame.height,
);
device.get_queue().submit(&[encoder.finish()]);
Have a look at
cargo run --example hello
- Coffee, which uses
wgpu_glyph
to provide font rendering on thewgpu
graphics backend.