summaryrefslogtreecommitdiff
path: root/auto/src/glew_str_wgl.c
diff options
context:
space:
mode:
Diffstat (limited to 'auto/src/glew_str_wgl.c')
-rw-r--r--auto/src/glew_str_wgl.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/auto/src/glew_str_wgl.c b/auto/src/glew_str_wgl.c
new file mode 100644
index 0000000..5463ef7
--- /dev/null
+++ b/auto/src/glew_str_wgl.c
@@ -0,0 +1,21 @@
+ }
+ ret = (len == 0);
+ }
+ return ret;
+}
+
+#if defined(_WIN32)
+
+#if defined(GLEW_MX)
+GLboolean GLEWAPIENTRY wglewContextIsSupported (const WGLEWContext* ctx, const char* name)
+#else
+GLboolean GLEWAPIENTRY wglewIsSupported (const char* name)
+#endif
+{
+ const GLubyte* pos = (const GLubyte*)name;
+ GLuint len = _glewStrLen(pos);
+ GLboolean ret = GL_TRUE;
+ while (ret && len > 0)
+ {
+ if (_glewStrSame1(&pos, &len, (const GLubyte*)"WGL_", 4))
+ {