2003-07-06 15:01:13 +00:00
|
|
|
return GLEW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2003-09-12 03:50:22 +00:00
|
|
|
const GLubyte* glewGetErrorString (GLenum error)
|
2003-07-06 15:01:13 +00:00
|
|
|
{
|
2003-09-12 03:50:22 +00:00
|
|
|
static const GLubyte* _glewErrorString[] =
|
2003-07-06 15:01:13 +00:00
|
|
|
{
|
2003-10-02 09:49:29 +00:00
|
|
|
"No error",
|
|
|
|
"Missing GL version",
|
2003-07-06 15:01:13 +00:00
|
|
|
"GL 1.1 and up are not supported",
|
|
|
|
"GLX 1.2 and up are not supported",
|
2003-10-02 09:49:29 +00:00
|
|
|
"Unknown error"
|
2003-07-06 15:01:13 +00:00
|
|
|
};
|
2003-10-02 09:49:29 +00:00
|
|
|
const int max_error = sizeof(_glewErrorString)/sizeof(*_glewErrorString) - 1;
|
|
|
|
return _glewErrorString[error > max_error ? max_error : error];
|
2003-07-06 15:01:13 +00:00
|
|
|
}
|
|
|
|
|
2003-09-12 03:50:22 +00:00
|
|
|
const GLubyte* glewGetString (GLenum name)
|
|
|
|
{
|
|
|
|
static const GLubyte* _glewString[] =
|
|
|
|
{
|
|
|
|
NULL,
|
|
|
|
"GLEW_VERSION_STRING"
|
|
|
|
};
|
2003-10-02 09:49:29 +00:00
|
|
|
const int max_string = sizeof(_glewString)/sizeof(*_glewString) - 1;
|
|
|
|
return _glewString[name > max_string ? max_string : name];
|
2003-09-12 03:50:22 +00:00
|
|
|
}
|
|
|
|
|
2003-07-06 15:01:13 +00:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
GLboolean glewExperimental = GL_FALSE;
|
|
|
|
|
2003-09-12 03:50:22 +00:00
|
|
|
GLenum glewInit ()
|
2003-07-06 15:01:13 +00:00
|
|
|
{
|
2003-09-12 03:50:22 +00:00
|
|
|
GLenum r;
|
2003-07-06 15:01:13 +00:00
|
|
|
if ( (r = _glewInit()) ) return r;
|
|
|
|
#ifdef _WIN32
|
|
|
|
return _wglewInit();
|
|
|
|
#else /* _UNIX */
|
|
|
|
return _glxewInit();
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
}
|