Minor change. Changed arg name in Render()
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
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: