-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Labels
Description
Fonts with multiple faces are supported by looping over each face and accessing the number of faces once a valid FT_Face object is available. Like we do here:
- looping:
Line 197 in 35feb88
for ( int i = 0; ft_face == 0 || i < num_faces; ++i ) - accessing
ft_face->num_faces:Lines 205 to 206 in 35feb88
if (num_faces == 0) num_faces = ft_face->num_faces;
But the num_faces = ft_face->num_faces; is only done in LoadAsync and not RangeAsync
/cc @mikemorris