Commit 624bc050b1aebccc9a0a50a189ec98c0b4d1e1b6

brlcad 2008-04-13T17:30:07

test commit, separate out BUGS to its own file

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.