2005-01-04 05:31:44 +00:00
|
|
|
}
|
|
|
|
ret = (len == 0);
|
2004-12-29 05:43:35 +00:00
|
|
|
}
|
2005-01-04 05:31:44 +00:00
|
|
|
return ret;
|
2004-12-29 07:24:49 +00:00
|
|
|
}
|
|
|
|
|
2016-01-23 11:32:55 +00:00
|
|
|
#elif !defined(GLEW_OSMESA) && !defined(GLEW_EGL) && !defined(__ANDROID__) && !defined(__native_client__) && !defined(__HAIKU__) && !defined(__APPLE__) || defined(GLEW_APPLE_GLX)
|
2004-12-29 07:24:49 +00:00
|
|
|
|
2015-08-07 06:53:47 +00:00
|
|
|
GLboolean glxewIsSupported (const char* name)
|
2004-12-29 07:24:49 +00:00
|
|
|
{
|
2014-10-14 09:24:49 +00:00
|
|
|
const GLubyte* pos = (const GLubyte*)name;
|
2004-12-29 07:24:49 +00:00
|
|
|
GLuint len = _glewStrLen(pos);
|
2005-01-04 05:31:44 +00:00
|
|
|
GLboolean ret = GL_TRUE;
|
|
|
|
while (ret && len > 0)
|
2004-12-29 05:43:35 +00:00
|
|
|
{
|
2005-01-04 05:31:44 +00:00
|
|
|
if(_glewStrSame1(&pos, &len, (const GLubyte*)"GLX_", 4))
|
|
|
|
{
|