sanegl

view sanegl.h @ 0:00b315b6db1e

sanegl initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 23 Jun 2011 05:19:40 +0300
parents
children
line source
1 #ifndef SANEGL_H_
2 #define SANEGL_H_
4 #ifndef __APPLE__
5 #include <GL/gl.h>
6 #else
7 #include <OpenGL/gl.h>
8 #endif
10 #ifndef GL_QUADS
11 #define GL_QUADS 7
12 #endif
14 void glBegin(GLenum mode);
15 void glEnd(void);
17 #include "sanegl_attr.h"
19 #endif /* SANEGL_H_ */