http://slackware.bholcomb.com/slackware/slackware-11.0/source/xap/xscreensaver/xscree...
[xscreensaver] / hacks / glx / gllist.h
1 #ifndef __GLLIST_H__
2 #define __GLLIST_H__
3
4 #include <stdlib.h>
5
6 #ifdef HAVE_COCOA
7 # include <OpenGL/gl.h>
8 #else
9 # include <GL/gl.h>
10 #endif
11
12 struct gllist{
13         GLenum format;
14         GLenum primitive;
15         int points;
16         const void *data;
17         struct gllist *next;
18 };
19
20 void renderList(const struct gllist *list, int wire_p);
21
22 #endif