From 678281f2f2d4ab460f8a0dca759dd8f0f504cecf Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Wed, 2 Mar 2005 15:06:23 +0000 Subject: [PATCH] In osg::isGLUExtensionSupported, fixed gluGetString to call GLU_EXTENSIONS rather than GL_EXTENSIONS. --- src/osg/GLExtensions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/GLExtensions.cpp b/src/osg/GLExtensions.cpp index f6e221a48..30c5a16e3 100644 --- a/src/osg/GLExtensions.cpp +++ b/src/osg/GLExtensions.cpp @@ -149,7 +149,7 @@ bool osg::isGLUExtensionSupported(const char *extension) if (s_extensions==NULL) { // get the extension list from OpenGL. - s_extensions = (const char*)gluGetString(GL_EXTENSIONS); + s_extensions = (const char*)gluGetString(GLU_EXTENSIONS); if (s_extensions==NULL) return false; // insert the ' ' delimiated extensions words into the extensionSet.