font: rename cache -> glyph_cache

This commit is contained in:
Daniel Eklöf 2019-10-17 17:12:04 +02:00
parent 1875f98945
commit 5a80bcff18
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 16 additions and 14 deletions

2
font.h
View file

@ -60,7 +60,7 @@ struct font {
int fc_idx;
struct font **fc_loaded_fallbacks; /* fc_fonts->nfont array */
hash_entry_t **cache;
hash_entry_t **glyph_cache;
};
struct font *font_from_name(font_list_t names, const char *attributes);