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
|
|
|
}
|
|
|
|
|
2015-12-06 02:58:46 +00:00
|
|
|
#if defined(_WIN32) && !defined(GLEW_EGL) && !defined(GLEW_OSMESA)
|
2004-12-29 07:24:49 +00:00
|
|
|
|
2015-08-07 06:53:47 +00:00
|
|
|
GLboolean GLEWAPIENTRY wglewIsSupported (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*)"WGL_", 4))
|
|
|
|
{
|