6 releases

0.1.5 Nov 13, 2021
0.1.4 Jan 21, 2021
0.1.3 Oct 17, 2020
0.1.1 Jul 11, 2020
0.1.0 May 23, 2020

#95 in Caching

Download history 2334/week @ 2024-01-05 2758/week @ 2024-01-12 2716/week @ 2024-01-19 2514/week @ 2024-01-26 2418/week @ 2024-02-02 2964/week @ 2024-02-09 3295/week @ 2024-02-16 2961/week @ 2024-02-23 2797/week @ 2024-03-01 2942/week @ 2024-03-08 2402/week @ 2024-03-15 2748/week @ 2024-03-22 2889/week @ 2024-03-29 2210/week @ 2024-04-05 2556/week @ 2024-04-12 1922/week @ 2024-04-19

10,018 downloads per month
Used in 113 crates (via glyph_brush)

Apache-2.0

65KB
890 lines

glyph_brush_draw_cache crates.io Documentation

Rasterization cache for ab_glyph used in glyph_brush.

  • Manages a texture. Draws glyphs into it and provides texture rect lookup for glyphs.
  • Automatic re-use & reordering when needed.
use glyph_brush_draw_cache::DrawCache;

// build a cache with default settings
let mut draw_cache = DrawCache::builder().build();

// queue up some glyphs to store in the cache
for (font_id, glyph) in glyphs {
    draw_cache.queue_glyph(font_id, glyph);
}

// process everything in the queue, rasterizing & uploading as necessary
draw_cache.cache_queued(&fonts, |rect, tex_data| update_texture(rect, tex_data))?;

// access a given glyph's texture position & pixel position for the texture quad
match draw_cache.rect_for(font_id, &glyph) {
    Some((tex_coords, px_coords)) => {}
    None => {/* The glyph has no outline, or wasn't queued up to be cached */}
}

Example

See the draw_cache_guts example to see how it works (run it from the top level).

cargo run --example draw_cache_guts

Dependencies

~1–1.3MB
~25K SLoC