ftp://netsw.org/x11/tools/desktop/xscreensaver-4.07.tar.gz
[xscreensaver] / hacks / glx / gllist.h
diff --git a/hacks/glx/gllist.h b/hacks/glx/gllist.h
new file mode 100644 (file)
index 0000000..d04ae9a
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef __GLLIST_H__
+#define __GLLIST_H__
+#include <GL/gl.h>
+#include <stdlib.h>
+
+struct gllist{
+       GLenum format;
+       GLenum primitive;
+       int points;
+       void *data;
+       struct gllist *next;
+};
+
+void renderList(struct gllist *list);
+
+#endif