Commit e8949db41b24756384e742def0b1ff324d5357ac

henry 2001-08-27T21:29:21

Minor change. Changed arg name in Render()

diff --git a/include/FTBitmapGlyph.h b/include/FTBitmapGlyph.h
index ca648b5..e8d200a 100755
--- a/include/FTBitmapGlyph.h
+++ b/include/FTBitmapGlyph.h
@@ -14,7 +14,7 @@ class	FTBitmapGlyph : public FTGlyph
 		// methods
 		FTBitmapGlyph( FT_Glyph glyph, unsigned int glyphIndex);
 		virtual ~FTBitmapGlyph();
-		virtual float Render( const FT_Vector& v);
+		virtual float Render( const FT_Vector& pen);
 		
 		// attributes
 		
diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index d852870..fcbe57b 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -37,10 +37,10 @@ class FTGlyph
 		/**
 		 * Renders this glyph at the current pen position.
 		 *
-		 * @param v		The current pen position.
+		 * @param pen		The current pen position.
 		 * @return		The advance distance for this glyph.
 		 */
-		virtual float Render( const FT_Vector& v) = 0;
+		virtual float Render( const FT_Vector& pen) = 0;
 
 		/**
 		 * Queries for errors.
diff --git a/include/FTPixmapGlyph.h b/include/FTPixmapGlyph.h
index abdaf48..f0a2ac3 100755
--- a/include/FTPixmapGlyph.h
+++ b/include/FTPixmapGlyph.h
@@ -14,7 +14,7 @@ class FTPixmapGlyph : public FTGlyph
 		// methods
 		FTPixmapGlyph( FT_Glyph glyph, const unsigned int glyphIndex);
 		virtual ~FTPixmapGlyph();
-		virtual float Render( const FT_Vector& v);
+		virtual float Render( const FT_Vector& pen);
 		
 		// attributes
 
diff --git a/include/FTTextureGlyph.h b/include/FTTextureGlyph.h
index 871dcd9..6e16a04 100755
--- a/include/FTTextureGlyph.h
+++ b/include/FTTextureGlyph.h
@@ -15,7 +15,7 @@ class	FTTextureGlyph : public FTGlyph
 		// methods
 		FTTextureGlyph( FT_Glyph glyph, unsigned int gi, int id, unsigned char* data, int stride, int height, float u, float v);
 		virtual ~FTTextureGlyph();
-		virtual float Render( const FT_Vector& v);
+		virtual float Render( const FT_Vector& pen);
 		
 		static int activeTextureID;
 	private: