glapi: Avoid #including gl.h

It's only used for a couple of integer types and and might conflict
with other client API header files.
This commit is contained in:
Kristian Høgsberg
2010-02-11 17:04:06 -05:00
parent cc57baff5f
commit c7ab5994ee

View File

@@ -46,8 +46,6 @@
#define GL_GLEXT_PROTOTYPES
#include "GL/gl.h"
#include "GL/glext.h"
#include "glthread.h"
@@ -136,7 +134,7 @@ struct _glapi_table *
_glapi_get_override_dispatch(int layer);
extern GLuint
extern unsigned int
_glapi_get_dispatch_table_size(void);
@@ -148,7 +146,7 @@ extern int
_glapi_add_dispatch( const char * const * function_names,
const char * parameter_signature );
extern GLint
extern int
_glapi_get_proc_offset(const char *funcName);
@@ -157,7 +155,7 @@ _glapi_get_proc_address(const char *funcName);
extern const char *
_glapi_get_proc_name(GLuint offset);
_glapi_get_proc_name(unsigned int offset);
#endif