wgpu_glyph 0.28.0

A fast text renderer for wgpu, powered by glyph_brush
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Test
on: [push, pull_request]
jobs:
  native:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
        rust: [stable]
    steps:
    - uses: actions/checkout@master
    - uses: hecrj/setup-rust-action@v1
      with:
        rust-version: ${{ matrix.rust }}
    - name: Run tests
      run: cargo test --verbose