~ubuntu-branches/ubuntu/hoary/xscreensaver/hoary-security

« back to all changes in this revision

Viewing changes to hacks/glx/gllist.h

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2004-09-07 13:37:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040907133723-is6assdt3f9w1bll
Tags: 4.16-1ubuntu3
* Turn on powermanagement. Turn on screen fade.
  Turn off debugging. Turn off screen grabbers
* Fix speedmine's options
* Run glsnake with out titles by default
* Final list of screensavers

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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