X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fglxfonts.h;h=46868046c3c47afb321aeba3b166183dfa401483;hp=1bffc54837cfb758e7af1dda5561dc9f2dd462b1;hb=f8cf5ac7b2f53510f80a0eaf286a25298be17bfe;hpb=ec8d2b32b63649e6d32bdfb306eda062769af823 diff --git a/hacks/glx/glxfonts.h b/hacks/glx/glxfonts.h index 1bffc548..46868046 100644 --- a/hacks/glx/glxfonts.h +++ b/hacks/glx/glxfonts.h @@ -1,4 +1,4 @@ -/* glxfonts, Copyright (c) 2001-2009 Jamie Zawinski +/* glxfonts, Copyright (c) 2001-2012 Jamie Zawinski * Loads X11 fonts for use with OpenGL. * * Permission to use, copy, modify, distribute, and sell this software and its @@ -15,11 +15,17 @@ #ifndef __GLXFONTS_H__ #define __GLXFONTS_H__ +#ifndef HAVE_GLBITMAP +# include "texfont.h" +#endif /* !HAVE_GLBITMAP */ + +#ifdef HAVE_GLBITMAP /* This is basically the same as glXUseXFont(). We have our own version of it for portability. */ extern void xscreensaver_glXUseXFont (Display *dpy, Font font, int first, int count, int listbase); +#endif /* HAVE_GLBITMAP */ /* Loads the font named by the X resource "res". Returns an XFontStruct. @@ -38,8 +44,12 @@ extern int string_width (XFontStruct *f, const char *c, int *height_ret); Any text inside [] will be rendered as a subscript. Assumes the font has been loaded as with load_font(). */ void print_gl_string (Display *dpy, +# ifdef HAVE_GLBITMAP XFontStruct *font, GLuint font_dlist, +# else /* !HAVE_GLBITMAP */ + texture_font_data *font_data, +# endif /* !HAVE_GLBITMAP */ int window_width, int window_height, GLfloat x, GLfloat y, const char *string,