ftp://ftp.linux.ncsu.edu/mirror/ftp.redhat.com/pub/redhat/linux/enterprise/4/en/os...
[xscreensaver] / hacks / glx / gllist.c
1 #include "gllist.h"
2
3 void renderList(struct gllist *list){
4         for(;list!=NULL;list=list->next){
5                 glInterleavedArrays(list->format,0,list->data);
6                 glDrawArrays(list->primitive,0,list->points);
7         }
8 }