27 releases

0.8.7 Mar 29, 2024
0.8.5 Oct 27, 2023
0.8.3 Jul 24, 2023
0.7.0 Mar 22, 2023
0.4.0 Mar 31, 2022

#19 in Rendering

Download history 55/week @ 2023-12-22 44/week @ 2023-12-29 66/week @ 2024-01-05 117/week @ 2024-01-12 245/week @ 2024-01-19 29/week @ 2024-01-26 36/week @ 2024-02-02 45/week @ 2024-02-09 88/week @ 2024-02-16 117/week @ 2024-02-23 118/week @ 2024-03-01 96/week @ 2024-03-08 125/week @ 2024-03-15 56/week @ 2024-03-22 259/week @ 2024-03-29 52/week @ 2024-04-05

498 downloads per month
Used in pseudo_term

MIT license

36KB
676 lines

wgpu-text

Build Status Licence crates.io Documentation

wgpu-text is a wrapper over glyph-brush for fast and easy text rendering by wgpu. It supports .otf and .ttf fonts.

Library Lorem Ipsum Showcase

This project was inspired by and is similar to wgpu_glyph but has additional features and is more straightforward. Also, there is no need to include glyph-brush in your project.

Since the glyph-brush crate is reexported and being heavily dependent on, it's recommended to go through Section docs and Section examples for better understanding of managing and adding text.

Installation

Add the following to your Cargo.toml file:

[dependencies]
wgpu_text = "0.8.7"

Usage

use wgpu_text::{glyph_brush::{Section as TextSection, Text}, BrushBuilder, TextBrush};

let brush = BrushBuilder::using_font_bytes(font).unwrap()
 /* .initial_cache_size((16_384, 16_384))) */ // use this to avoid resizing cache texture
    .build(&device, config.width, config.height, config.format);

// Directly implemented from glyph_brush.
let section = TextSection::default().add_text(Text::new("Hello World"));

// on window resize:
        brush.resize_view(config.width as f32, config.height as f32, &queue);

// window event loop:
    winit::event::Event::RedrawRequested(_) => {
        // Before are created Encoder and frame TextureView.

        // Crashes if inner cache exceeds limits.
        brush.queue(&device, &queue, vec![&section, ...]).unwrap();

        {
            let mut rpass = encoder.begin_render_pass(...);
            brush.draw(&mut rpass);
        }

        queue.submit([encoder.finish()]);
        frame.present();
    }

Examples

For more detailed examples, look through examples.

  • cargo run --example <example-name>

Run examples with --release for accurate performance.

Features

Besides basic text rendering and glyph-brush features, some features add customization:

  • builtin matrix - default matrix for orthographic projection (feel free to use it for creating custom matrices)
  • custom matrix - grants the ability to provide a custom matrix for purposes of custom view, rotation, etc. (the downside is that it applies to all rendered text)
  • depth testing - by adding a z coordinate, text can be set on top or below other text (if enabled). Watch out for the queueing order when queueing text sections. You should queue them from the furthest to the closest (according to the z coordinate, bigger the z, more further it is).

Contributing

All contributions are welcome.

Dependencies

~11–42MB
~650K SLoC