[hb-ft] Minor rearrange of struct members

To make clear what members the lock protects.
This commit is contained in:
Behdad Esfahbod 2022-05-20 11:40:44 -06:00
parent 4e11da054d
commit 55804e8d68
1 changed files with 2 additions and 2 deletions

View File

@ -80,12 +80,12 @@
struct hb_ft_font_t
{
mutable hb_mutex_t lock;
FT_Face ft_face;
int load_flags;
bool symbol; /* Whether selected cmap is symbol cmap. */
bool unref; /* Whether to destroy ft_face when done. */
mutable hb_mutex_t lock;
FT_Face ft_face;
mutable int cached_x_scale;
mutable hb_advance_cache_t advance_cache;
};