diff options
author | Brian Paul <[email protected]> | 2001-12-14 11:39:39 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-12-14 11:39:39 +0000 |
commit | 26d31abd875f7e6cc6c39c226de73b4c4c61eb8e (patch) | |
tree | e260ae5d7f2f62c26a530cf36c83ac1e55748883 /src/glut | |
parent | 7702362bdac45709128a4d600b401f28f9765893 (diff) |
s/glxGetProcAddress/glXGetProcAddressARB/
Diffstat (limited to 'src/glut')
-rw-r--r-- | src/glut/glx/glut_glxext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glut/glx/glut_glxext.c b/src/glut/glx/glut_glxext.c index bb2eb475ce2..71b67e075d9 100644 --- a/src/glut/glx/glut_glxext.c +++ b/src/glut/glx/glut_glxext.c @@ -188,7 +188,7 @@ __glut_glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, static glXCreateContextWithConfigSGIX_t glXCreateContextWithConfig_ptr = NULL; if (!glXCreateContextWithConfig_ptr) { glXCreateContextWithConfig_ptr = (glXCreateContextWithConfigSGIX_t) - glXGetProcAddress((const GLubyte *) "glXCreateContextWithConfigSGIX"); + glXGetProcAddressARB((const GLubyte *) "glXCreateContextWithConfigSGIX"); } if (glXCreateContextWithConfig_ptr) return (*glXCreateContextWithConfig_ptr)(dpy, config, render_type, @@ -214,7 +214,7 @@ __glut_glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, static glXGetFBConfigAttribSGIX_t glXGetFBConfigAttrib_ptr = NULL; if (!glXGetFBConfigAttrib_ptr) { glXGetFBConfigAttrib_ptr = (glXGetFBConfigAttribSGIX_t) - glXGetProcAddress((const GLubyte *) "glXGetFBConfigAttribSGIX"); + glXGetProcAddressARB((const GLubyte *) "glXGetFBConfigAttribSGIX"); } if (glXGetFBConfigAttrib_ptr) return (*glXGetFBConfigAttrib_ptr)(dpy, config, attribute, value); @@ -237,7 +237,7 @@ __glut_glXGetFBConfigFromVisualSGIX(Display *dpy, XVisualInfo *vis) static glXGetFBConfigFromVisualSGIX_t glXGetFBConfigFromVisual_ptr = NULL; if (!glXGetFBConfigFromVisual_ptr) { glXGetFBConfigFromVisual_ptr = (glXGetFBConfigFromVisualSGIX_t) - glXGetProcAddress((const GLubyte *) "glXGetFBConfigFromVisualSGIX"); + glXGetProcAddressARB((const GLubyte *) "glXGetFBConfigFromVisualSGIX"); } if (glXGetFBConfigFromVisual_ptr) return (*glXGetFBConfigFromVisual_ptr)(dpy, vis); |