Minor changes to comments
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
diff --git a/src/FTBitmapGlyph.cpp b/src/FTBitmapGlyph.cpp
index 1f032e4..4663638 100755
--- a/src/FTBitmapGlyph.cpp
+++ b/src/FTBitmapGlyph.cpp
@@ -33,7 +33,7 @@ FTBitmapGlyph::FTBitmapGlyph( FT_Glyph glyph, unsigned int gi)
pos.x = bitmap->left;
pos.y = srcHeight - bitmap->top;
- // FIXME The buffer is upside down. What about dest alignment?
+ // FIXME What about dest alignment?
destWidth = srcWidth;
destHeight = srcHeight;
diff --git a/src/FTGlyphContainer.cpp b/src/FTGlyphContainer.cpp
index 71075a4..0422752 100755
--- a/src/FTGlyphContainer.cpp
+++ b/src/FTGlyphContainer.cpp
@@ -44,7 +44,7 @@ FT_Vector& FTGlyphContainer::render( unsigned int index, unsigned int next, FT_V
if( !face->Error())
advance = glyphs[left]->Render( pen);
- kernAdvance.x = advance + kernAdvance.x;
+ kernAdvance.x = advance + kernAdvance.x; // FIXME float to long
// kernAdvance.y = advance.y + kernAdvance.y;
return kernAdvance;
}
diff --git a/src/FTPixmapGlyph.cpp b/src/FTPixmapGlyph.cpp
index ed83952..a54591c 100755
--- a/src/FTPixmapGlyph.cpp
+++ b/src/FTPixmapGlyph.cpp
@@ -35,7 +35,7 @@ FTPixmapGlyph::FTPixmapGlyph( FT_Glyph glyph, const unsigned int gi)
pos.x = bitmap->left;
pos.y = srcHeight - bitmap->top;
- // FIXME The buffer is upside down. What about dest alignment?
+ // FIXME What about dest alignment?
destWidth = srcWidth;
destHeight = srcHeight;