This should put an end to the font binary compatibility issue.
[freeglut] / src / freeglut_font.c
index 3fe559a..89dc41f 100644 (file)
@@ -55,36 +55,6 @@ extern SFG_Font fgFontTimesRoman24;
 extern SFG_StrokeFont fgStrokeRoman;
 extern SFG_StrokeFont fgStrokeMonoRoman;
 
-/*
- * This is for GLUT binary compatibility, as suggested by Steve Baker
- */
-#if TARGET_HOST_UNIX_X11
-  struct _GLUTstrokeFont {
-    const char *name;
-    int num_chars;
-    void *ch;
-    float top;
-    float bottom;
-  };
-
-  struct _GLUTbitmapFont {
-    const char *name;
-    const int num_chars;
-    const int first;
-    const void *ch;
-  };
-
-  struct _GLUTstrokeFont glutStrokeRoman;
-  struct _GLUTstrokeFont glutStrokeMonoRoman;
-  struct _GLUTbitmapFont glutBitmap9By15;
-  struct _GLUTbitmapFont glutBitmap8By13;
-  struct _GLUTbitmapFont glutBitmapTimesRoman10;
-  struct _GLUTbitmapFont glutBitmapTimesRoman24;
-  struct _GLUTbitmapFont glutBitmapHelvetica10;
-  struct _GLUTbitmapFont glutBitmapHelvetica12;
-  struct _GLUTbitmapFont glutBitmapHelvetica18;
-#endif
-
 
 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */