diff --git a/freeglut/freeglut/src/freeglut_glutfont_definitions.c b/freeglut/freeglut/src/freeglut_glutfont_definitions.c index 60a987c..ab21d6b 100644 --- a/freeglut/freeglut/src/freeglut_glutfont_definitions.c +++ b/freeglut/freeglut/src/freeglut_glutfont_definitions.c @@ -54,15 +54,6 @@ struct freeglutStrokeFont float bottom ; }; -struct freeglutBitmapFont -{ - const char *name ; - const int num_chars ; - const int first ; - const void *ch ; -}; - - struct freeglutStrokeFont glutStrokeRoman ; struct freeglutStrokeFont glutStrokeMonoRoman ; diff --git a/freeglut/freeglut/src/freeglut_internal.h b/freeglut/freeglut/src/freeglut_internal.h index c48d79b..f7155d5 100644 --- a/freeglut/freeglut/src/freeglut_internal.h +++ b/freeglut/freeglut/src/freeglut_internal.h @@ -687,6 +687,18 @@ struct tagSFG_Font float xorig, yorig; /* Relative origin of the character */ }; +#if TARGET_HOST_POSIX_X11 + +struct freeglutBitmapFont +{ + const char *name ; + const int num_chars ; + const int first ; + const void *ch ; +}; + +#endif + /* The stroke font structures */ typedef struct tagSFG_StrokeVertex SFG_StrokeVertex;