http://slackware.bholcomb.com/slackware/slackware-11.0/source/xap/xscreensaver/xscree...
[xscreensaver] / hacks / glx / gllist.h
index d04ae9a30c375cd8e2a8549d6d15ef061e2f6672..077766f4567d1cdd970df46537fb6f892ca74854 100644 (file)
@@ -1,16 +1,22 @@
 #ifndef __GLLIST_H__
 #define __GLLIST_H__
-#include <GL/gl.h>
+
 #include <stdlib.h>
 
+#ifdef HAVE_COCOA
+# include <OpenGL/gl.h>
+#else
+# include <GL/gl.h>
+#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