X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fglxfonts.h;h=75107909af1666e2cd65225988095e273aa66f6a;hp=32bee489f9a3ac7bfdb82b2089e0be92c9313c8d;hb=c1b9b55ad8d59dc05ef55e316aebf5863e7dfa56;hpb=de460e831dc8578acfa8b72251ab9346c99c1f96 diff --git a/hacks/glx/glxfonts.h b/hacks/glx/glxfonts.h index 32bee489..75107909 100644 --- a/hacks/glx/glxfonts.h +++ b/hacks/glx/glxfonts.h @@ -1,4 +1,4 @@ -/* glxfonts, Copyright (c) 2001-2004 Jamie Zawinski +/* glxfonts, Copyright (c) 2001-2008 Jamie Zawinski * Loads X11 fonts for use with OpenGL. * * Permission to use, copy, modify, distribute, and sell this software and its @@ -23,8 +23,9 @@ extern void load_font (Display *, char *resource, XFontStruct **font_ret, GLuint *dlist_ret); -/* Width of the string in pixels. */ -extern int string_width (XFontStruct *f, const char *c); +/* Bounding box of the string in pixels. + */ +extern int string_width (XFontStruct *f, const char *c, int *height_ret); /* Draws the string on the window at the given pixel position. Newlines and tab stops are honored. @@ -35,6 +36,7 @@ void print_gl_string (Display *dpy, GLuint font_dlist, int window_width, int window_height, GLfloat x, GLfloat y, - const char *string); + const char *string, + Bool clear_background_p); #endif /* __GLXFONTS_H__ */