test commit, separate out BUGS to its own file
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
diff --git a/BUGS.txt b/BUGS.txt
new file mode 100644
index 0000000..744e279
--- /dev/null
+++ b/BUGS.txt
@@ -0,0 +1,16 @@
+BUGS
+====
+
+* FTExtrdGlyph - Some glyph contours are 'wound' in reverse causing
+ the 'sides' of the extrusions to be culled. First fix only half
+ worked. When calculating the winding using the summed area I need to
+ use the outside contour only. How do I know it's an outside contour?
+ A workaround is to disable face culling.
+
+* FTGLTextureFonts can't be used inside display lists. This because
+ the glGet call to check the current texture id can't be used in a
+ display list. It is only a valid call when the list is compiled and
+ is ignore after that.
+
+* The texture co-ords in the Texture Font may be wrong for non
+ scalable fonts.
diff --git a/TODO.txt b/TODO.txt
index 4daf309..e0bfef6 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -24,17 +24,3 @@ FUTURE:
- Template methods
- Move the init code out of the glyph constructors into an init
function so that they can return errors.
-
-
-BUGS:
- - FTExtrdGlyph - Some glyph contours are 'wound' in reverse causing
- the 'sides' of the extrusions to be culled. First fix only half
- worked. When calculating the winding using the summed area I need
- to use the outside contour only. How do I know it's an outside
- contour? A workaround is to disable face culling.
- - FTGLTextureFonts can't be used inside display lists. This because the
- glGet call to check the current texture id can't be used in a display
- list. It is only a valid call when the list is compiled and is ignore after
- that.
- - The texture co-ords in the Texture Font may be wrong for non
- scalable fonts.