[ft] Enlarge glyph-cache value-size again
8bits just doesn't do it. It has caused cache-hammering and high CPU usage when the font is hinted. Fixes https://github.com/harfbuzz/harfbuzz/issues/4139
This commit is contained in:
parent
921eca3e79
commit
62fc27f372
|
@ -85,7 +85,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
using hb_ft_advance_cache_t = hb_cache_t<16, 8, 8, false>;
|
using hb_ft_advance_cache_t = hb_cache_t<16, 24, 8, false>;
|
||||||
|
|
||||||
struct hb_ft_font_t
|
struct hb_ft_font_t
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue