Tagged Questions
0
votes
1answer
48 views
FT_Get_Kerning returns 0 vector
I check if my TTF file has kerning information using FT_HAS_KERNING, and this returns true.
I then use:
FT_Vector delta;
FT_Get_Kerning( face, prev, next, FT_KERNING_DEFAULT, &delta );
to ...