blob: 75cb4acfcb7e628c31d34ebd588924dc73425660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define GLAPI
// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
// "glext.h" are parsed.
#define GL_GLEXT_PROTOTYPES
#include <GL/gl.h>
// removed due to renaming and the fact that the renamed version is not included
// in the super interfaces ..
GLAPI void APIENTRY glWeightPointer (GLint, GLenum, GLsizei, const GLvoid *);
GLAPI void APIENTRY glMatrixIndexPointer (GLint, GLenum, GLsizei, const GLvoid *);
GLAPI void APIENTRY glCurrentPaletteMatrix (GLint);
|