summaryrefslogtreecommitdiff
path: root/engine-ocean/External/glew/auto/src/glew_str_egl.c
blob: f0c52f925d060452726840723c9ac2ce56be55dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    }
    ret = (len == 0);
  }
  return ret;
}

#elif defined(GLEW_EGL)

GLboolean eglewIsSupported (const char* name)
{
  const GLubyte* pos = (const GLubyte*)name;
  GLuint len = _glewStrLen(pos);
  GLboolean ret = GL_TRUE;
  while (ret && len > 0)
  {
    if(_glewStrSame1(&pos, &len, (const GLubyte*)"EGL_", 4))
    {