X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fstarwars.c;h=1398c159c9bd28da58ef4664ae64c8e04059d69f;hp=ada87e94933e13a533a0980fcc96695a0e0b27ba;hb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;hpb=dba664f31aa87285db4d76cf8c5e66335299703a diff --git a/hacks/glx/starwars.c b/hacks/glx/starwars.c index ada87e94..1398c159 100644 --- a/hacks/glx/starwars.c +++ b/hacks/glx/starwars.c @@ -281,7 +281,7 @@ latin1_to_ascii (char *s) static int -string_width (sws_configuration *sc, const char *s) +sw_string_width (sws_configuration *sc, const char *s) { if (textures_p) return texture_string_width (sc->texfont, s, 0); @@ -295,7 +295,7 @@ char_width (sws_configuration *sc, char c) char s[2]; s[0] = c; s[1] = 0; - return string_width (sc, s); + return sw_string_width (sc, s); } @@ -444,7 +444,7 @@ draw_string (sws_configuration *sc, GLfloat x, GLfloat y, const char *s) while (*s) { *c = *s++; - w = string_width (sc, c); + w = sw_string_width (sc, c); glBegin (GL_LINE_LOOP); glVertex3f (0, 0, 0); glVertex3f (w, 0, 0); @@ -1000,7 +1000,7 @@ draw_sws (ModeInfo *mi) if (alignment >= 0) { - int n = string_width (sc, line); + int n = sw_string_width (sc, line); xoff = 1.0 - (n * sc->font_scale); }