Commit 566da1a7cf12670d613cde1351440ca114a62545

henry 2001-07-30T01:08:15

render() now takes a reference

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index 56f4b61..5cc4995 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -14,7 +14,7 @@ class FTGlyph
 		// methods
 		FTGlyph( int glyphIndex);
 		virtual ~FTGlyph();
-		virtual float Render( FT_Vector v) = 0;
+		virtual float Render( FT_Vector& v) = 0;
 		
 		FT_Error Error() const { return err;}