X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fgllist.h;h=077766f4567d1cdd970df46537fb6f892ca74854;hp=d04ae9a30c375cd8e2a8549d6d15ef061e2f6672;hb=49f5b54f312fe4ac2e9bc47581a72451bd0e8439;hpb=ccb7f4903325f92555a9722bba74b58346654ba0 diff --git a/hacks/glx/gllist.h b/hacks/glx/gllist.h index d04ae9a3..077766f4 100644 --- a/hacks/glx/gllist.h +++ b/hacks/glx/gllist.h @@ -1,16 +1,22 @@ #ifndef __GLLIST_H__ #define __GLLIST_H__ -#include + #include +#ifdef HAVE_COCOA +# include +#else +# include +#endif + struct gllist{ GLenum format; GLenum primitive; int points; - void *data; + const void *data; struct gllist *next; }; -void renderList(struct gllist *list); +void renderList(const struct gllist *list, int wire_p); #endif