mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
[VARC] Reduce stack usage on 32bit systems
This commit is contained in:
parent
84ffb7e477
commit
6a7b4dcae6
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ VARC::get_path_at (hb_font_t *font,
|
|||
|
||||
hb_ubytes_t record = (this+glyphRecords)[idx];
|
||||
|
||||
float static_cache[128];
|
||||
float static_cache[sizeof (void *) * 16];
|
||||
VarRegionList::cache_t *cache = (this+varStore).create_cache (hb_array (static_cache));
|
||||
|
||||
transform.scale (font->x_multf, font->y_multf);
|
||||
|
|
Loading…
Add table
Reference in a new issue