mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
[cache] Simplify cache declarations
This commit is contained in:
parent
591f00a281
commit
3d0816c7c4
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue