mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-14 10:13:49 +00:00
2642bccfca
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@634 783a27ee-832a-0410-bc00-9f386506c6dd
22 lines
452 B
C
22 lines
452 B
C
}
|
|
ret = (len == 0);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
#elif !defined(__APPLE__) || defined(GLEW_APPLE_GLX)
|
|
|
|
#if defined(GLEW_MX)
|
|
GLboolean glxewContextIsSupported (const GLXEWContext* ctx, const char* name)
|
|
#else
|
|
GLboolean glxewIsSupported (const char* name)
|
|
#endif
|
|
{
|
|
GLubyte* pos = (GLubyte*)name;
|
|
GLuint len = _glewStrLen(pos);
|
|
GLboolean ret = GL_TRUE;
|
|
while (ret && len > 0)
|
|
{
|
|
if(_glewStrSame1(&pos, &len, (const GLubyte*)"GLX_", 4))
|
|
{
|