aboutsummaryrefslogtreecommitdiff
path: root/glew/auto/src/glew_str_head.c
diff options
context:
space:
mode:
Diffstat (limited to 'glew/auto/src/glew_str_head.c')
-rw-r--r--glew/auto/src/glew_str_head.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/glew/auto/src/glew_str_head.c b/glew/auto/src/glew_str_head.c
new file mode 100644
index 0000000..fed3a0f
--- /dev/null
+++ b/glew/auto/src/glew_str_head.c
@@ -0,0 +1,9 @@
+GLboolean GLEWAPIENTRY glewIsSupported (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*)"GL_", 3))
+ {