convert line ends
[canaan.git] / prj / tech / libsrc / g2 / plytyp.h
blob3b21defaed2b4bf9ce32d20e84b46504a6dd1afd
1 /*
2 * $Source: x:/prj/tech/libsrc/g2/RCS/plytyp.h $
3 * $Revision: 1.2 $
4 * $Author: KEVIN $
5 * $Date: 1997/10/01 13:37:00 $
7 * Polygon-related structures.
9 * This file is part of the g2 library.
13 #ifndef __PLYTYP
14 #define __PLYTYP
15 #include <fix.h>
17 /* format for vertex buffers. */
18 typedef struct grs_vertex {
19 fix x, y; /* screen coordinates */
20 fix u, v, w; /* texture parameters/rgb */
21 fix i; /* intensity */
22 } grs_vertex;
23 #endif /* !__PLYTYP */