Commit 6a234ca358e65864a5d08578cfd95d6aac72a8ca

henry 2001-08-24T02:16:00

Minor changes to comments

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;