renderer: use direct FreeType with explicit font files

This commit is contained in:
2026-08-13 20:40:38 +09:00
parent 125e9349c0
commit f46d51b539
16 changed files with 314 additions and 5201 deletions

View File

@@ -22,14 +22,14 @@ cleanup()
trap cleanup 0 1 2 15
./strans map font &
./strans map "$@" &
strans_pid=$!
sleep 1
kill -0 "$strans_pid"
# warm up glyph cache
# warm up the renderer
./bench/bench bench/bench.keys 100
echo "cache warmed up"
echo "renderer warmed up"
perf record -g -o bench/perf.data -p "$strans_pid" &
perf_pid=$!