Fixes to bitmap glyph alignment
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
diff --git a/HISTORY.txt b/HISTORY.txt
index 5a49338..1707af9 100644
--- a/HISTORY.txt
+++ b/HISTORY.txt
@@ -1,5 +1,5 @@
FTGL 2.0 (FTGL_2_0_0)
- - Fixed some alignment bugs in new ( > 2.0.9) Freetype.
+ - Fixed some alignment bugs caused by changes to Freetype ( > 2.0.9).
- Minor fixes to float declarations.
- Moved FTBBox and FTPoint to their own files and added Move() and
operator += to FTBBox
diff --git a/README.txt b/README.txt
index 7d7cc5d..ccd2ec0 100755
--- a/README.txt
+++ b/README.txt
@@ -26,9 +26,8 @@ written with performance, robustness and simplicity in mind.
USAGE:
- FTGLPixmapFont font;
-
- font.Open( "Fonts:Arial");
+ FTGLPixmapFont font( "Fonts:Arial");
+
font.FaceSize( 72);
font.render( "Hello World!");
@@ -38,8 +37,8 @@ This library was inspired by gltt, Copyright (C) 1998-1999 Stephane Rehel
Bezier curve code contributed by Jed Soane.
Demo, Linux port, extrusion code and gltt maintainance by Gerard Lanois
Linux port by Matthias Kretz
-Windows port by Max Rheiner & Ellers
-Bug fixes by Robert Osfield, Marcelo E. Magallon, Markku Rontu
+Windows port by Max Rheiner & Andrew Ellerton
+Bug fixes by Robert Osfield, Marcelo E. Magallon, Markku Rontu, Mark A. Fox
Containers and optimisations by Sebastien Barre
Please contact me if you have any suggestions, feature requests, or problems.