ftp://ftp.smr.ru/pub/0/FreeBSD/releases/distfiles/xscreensaver-3.16.tar.gz
[xscreensaver] / hacks / glx / buildlwo.h
1 /*-
2  * buildlwo.h: Header file for Lightwave Object Display List Builder
3  * for OpenGL
4  *
5  * by Ed Mackey, 4/19/97
6  *
7  */
8
9 #ifndef __BUILD_LWO_H__
10 #define __BUILD_LWO_H__
11
12 struct lwo {
13         int         num_pnts;
14         GLfloat    *pnts;
15         GLfloat    *normals;
16         unsigned short int *pols;
17         GLfloat    *smoothnormals;
18 };
19
20 GLuint      BuildLWO(int wireframe, struct lwo *object);
21
22 #endif
23
24 /* End of buildlwo.h */