ftp://ftp.linux.ncsu.edu/mirror/ftp.redhat.com/pub/redhat/linux/enterprise/4/en/os...
[xscreensaver] / hacks / glx / gllist.h
1 #ifndef __GLLIST_H__
2 #define __GLLIST_H__
3 #include <GL/gl.h>
4 #include <stdlib.h>
5
6 struct gllist{
7         GLenum format;
8         GLenum primitive;
9         int points;
10         void *data;
11         struct gllist *next;
12 };
13
14 void renderList(struct gllist *list);
15
16 #endif