diff options
Diffstat (limited to 'system/include/GL/glew.h')
-rw-r--r-- | system/include/GL/glew.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/include/GL/glew.h b/system/include/GL/glew.h index efd90d6f..8be23b60 100644 --- a/system/include/GL/glew.h +++ b/system/include/GL/glew.h @@ -827,7 +827,9 @@ GLenum glewInit (void); GLboolean glewIsSupported (const char *name); #define glewIsExtensionSupported(x) glewIsSupported(x) -GLboolean glewExperimental; +//GLboolean glewExperimental; +static GLboolean glewExperimental; // XXX Emscripten Added 'static' to work around a linkage issue. See https://github.com/kripken/emscripten/issues/2025 + GLboolean glewGetExtension (const char *name); const GLubyte * glewGetErrorString (GLenum error); const GLubyte * glewGetString (GLenum name); |