17 releases

0.2.8 Dec 14, 2023
0.2.7 May 31, 2023
0.2.5 Feb 13, 2023
0.2.4 Oct 9, 2022
0.1.4 Mar 27, 2022

#145 in Graphics APIs

47 downloads per month
Used in rui

MIT license

100KB
2K SLoC

Rust 1.5K SLoC // 0.0% comments WebGPU Shader Language 482 SLoC // 0.1% comments

vger-rs

build status dependency status

vger is a vector graphics renderer which renders a limited set of primitives, but does so almost entirely on the GPU. Port of VGER to Rust. Used in rui.

Status

  • ✅ Quadratic bezier strokes
  • ✅ Round Rectangles
  • ✅ Circles
  • ✅ Line segments (need square ends for Audulus)
  • ✅ Arcs
  • ✅ Text (Audulus only uses one font, but could add support for more if anyone is interested)
  • ✅ Multi-line text
  • ✅ Path Fills.
  • ✅ Scissoring
  • ❌ Images

Why?

I was previously using nanovg for Audulus, which was consuming too much CPU for the immediate-mode UI. nanovg is certainly more full featured, but for Audulus, vger maintains 120fps while nanovg falls to 30fps on my 120Hz iPad because of CPU-side path tessellation, and other overhead. vger renders analytically without tessellation, leaning heavily on the fragment shader.

How it works

vger draws one or more quads for each primitive and computes the actual primitive shape in the fragment function with an SDF. For path fills, vger splits paths into horizontal slabs (see path.rs) to reduce the number of tests in the fragment function.

The bezier path fill case is somewhat original. To avoid having to solve quadratic equations (which has numerical issues), the fragment function uses a sort-of reverse Loop-Blinn. To determine if a point is inside or outside, vger tests against the lines formed between the endpoints of each bezier curve, flipping inside/outside for each intersection with a +x ray from the point. Then vger tests the point against the area between the bezier segment and the line, flipping inside/outside again if inside. This avoids the pre-computation of Loop-Blinn, and the AA issues of Kokojima.

References

Text Rendering Hates You

Adventures in Text Rendering

Vector Graphics on GPU

GPU UIs at 120 FPS

Dependencies

~5–37MB
~531K SLoC