X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Ffont-ximage.c;h=c8ddc4824088c3cd4f50b8dfcff489a6b45f1cdd;hp=c0321e7ae4c4dffb8170cfc00fa85ad7022a8899;hb=49f5b54f312fe4ac2e9bc47581a72451bd0e8439;hpb=ccb7f4903325f92555a9722bba74b58346654ba0 diff --git a/hacks/glx/font-ximage.c b/hacks/glx/font-ximage.c index c0321e7a..c8ddc482 100644 --- a/hacks/glx/font-ximage.c +++ b/hacks/glx/font-ximage.c @@ -17,13 +17,19 @@ #include #include #include -#include -#include -#include /* only for GLfloat */ + +#ifdef HAVE_COCOA +# include "jwxyz.h" +# include +#else /* !HAVE_COCOA */ +# include +# include +# include /* only for GLfloat */ +#endif /* !HAVE_COCOA */ extern char *progname; -#include +#include "font-ximage.h" #undef MAX #define MAX(a,b) ((a)>(b)?(a):(b)) @@ -45,8 +51,9 @@ bigendian (void) static int to_pow2 (int i) { - static unsigned int pow2[] = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, - 2048, 4096, 8192, 16384, 32768, 65536 }; + static const unsigned int pow2[] = { + 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, + 2048, 4096, 8192, 16384, 32768, 65536 }; int j; for (j = 0; j < countof(pow2); j++) if (pow2[j] >= i) return pow2[j];