Tagged Questions
2
votes
2answers
948 views
Accessing font kerning information in Java2D
Little background..
I'm in the process of making an OpenGL game using Java and LWJGL. I've written a TextRenderer-class that renders text using cached pages of glyphs. The glyphs itself are rendered ...
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 ...