diff options
author | Brian Paul <[email protected]> | 2001-11-27 02:55:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-11-27 02:55:58 +0000 |
commit | 253270dfcce980c88be6b21204a0c13a0becb2de (patch) | |
tree | da79a43eec35d7f2554e8168afbda04b1834d5ab /src/glut/glx/glut_win.c | |
parent | 2f3d6203989e3a9843a548796b2c2062f470517e (diff) |
use glXGetProcAddressARB to avoid extension linkage problems
Diffstat (limited to 'src/glut/glx/glut_win.c')
-rw-r--r-- | src/glut/glx/glut_win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glut/glx/glut_win.c b/src/glut/glx/glut_win.c index d03829c3a1a..ec8ad07f221 100644 --- a/src/glut/glx/glut_win.c +++ b/src/glut/glx/glut_win.c @@ -577,7 +577,7 @@ __glutCreateWindow(GLUTwindow * parent, window->renderWin = window->win; #if defined(GLX_VERSION_1_1) && defined(GLX_SGIX_fbconfig) if (fbc) { - window->ctx = glXCreateContextWithConfigSGIX(__glutDisplay, fbc, + window->ctx = __glut_glXCreateContextWithConfigSGIX(__glutDisplay, fbc, GLX_RGBA_TYPE_SGIX, None, __glutTryDirect); } else #endif |