diff options
author | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
commit | ab7c6ffadccbeb96b6f4ac58fb75e90697cd30c5 (patch) | |
tree | eb7318b740cb5bcfc8b6cf530766c7cb88a8bfd4 /src/glx/x11/glxext.c | |
parent | 13613986004fcd43e8079b23d8128c2d572bca76 (diff) |
Remove the last remnants of GLX_BUILT_IN_XMESA. This allows the removal of
the evil, ugly GLX_PREFIX macro as well.
Diffstat (limited to 'src/glx/x11/glxext.c')
-rw-r--r-- | src/glx/x11/glxext.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/glx/x11/glxext.c b/src/glx/x11/glxext.c index 25be081b03d..980e50621e1 100644 --- a/src/glx/x11/glxext.c +++ b/src/glx/x11/glxext.c @@ -1770,8 +1770,7 @@ USED static Bool MakeContextCurrent(Display *dpy, GLXDrawable draw, } -PUBLIC Bool GLX_PREFIX(glXMakeCurrent)(Display *dpy, GLXDrawable draw, - GLXContext gc) +PUBLIC Bool glXMakeCurrent(Display *dpy, GLXDrawable draw, GLXContext gc) { return MakeContextCurrent( dpy, draw, draw, gc ); } |