[cache] Simplify cache declarations

This commit is contained in:
Behdad Esfahbod 2025-04-01 21:18:29 -06:00
parent 591f00a281
commit 3d0816c7c4
2 changed files with 2 additions and 2 deletions

View file

@ -2014,7 +2014,7 @@ struct cmap
struct accelerator_t
{
using cache_t = hb_cache_t<21, 19, 8, true>;
using cache_t = hb_cache_t<21, 19>;
static_assert (sizeof (cache_t) == 1024, "");
accelerator_t (hb_face_t *face)

View file

@ -61,7 +61,7 @@
* never need to call these functions directly.
**/
using hb_ot_font_advance_cache_t = hb_cache_t<24, 16, 8, true>;
using hb_ot_font_advance_cache_t = hb_cache_t<24, 16>;
static_assert (sizeof (hb_ot_font_advance_cache_t) == 1024, "");
struct hb_ot_font_t