Commit 0775ec8b105a90cc0751c57a694c69b926f1e819

henry 2001-08-07T21:28:45

Added a note about kerning modes

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/FTGlyphContainer.cpp b/src/FTGlyphContainer.cpp
index d92e1b6..ccc4f8f 100755
--- a/src/FTGlyphContainer.cpp
+++ b/src/FTGlyphContainer.cpp
@@ -40,6 +40,7 @@ FT_Vector& FTGlyphContainer::render( int index, int next, FT_Vector pen)
 	
 	if( 0 < next <=  glyphs.size())
 	{
+		// ft_kerning_unfitted
 		err = FT_Get_Kerning( *face, glyphs[index]->glyphIndex, glyphs[next]->glyphIndex, ft_kerning_default, &kernAdvance);
 	}