glx: Alias glXFreeContextEXT to glXDestroyContext
authorAdam Jackson <ajax@redhat.com>
Thu, 2 Jun 2011 20:29:59 +0000 (16:29 -0400)
committerAdam Jackson <ajax@redhat.com>
Wed, 29 Jun 2011 18:07:18 +0000 (14:07 -0400)
Signed-off-by: Adam Jackson <ajax@redhat.com>
src/glx/glxcmds.c

index e6816ea..2106818 100644 (file)
@@ -354,8 +354,9 @@ glx_send_destroy_context(Display *dpy, XID xid)
 /*
 ** Destroy the named context
 */
-static void
-DestroyContext(Display * dpy, GLXContext ctx)
+
+_X_EXPORT void
+glXDestroyContext(Display * dpy, GLXContext ctx)
 {
    struct glx_context *gc = (struct glx_context *) ctx;
 
@@ -380,12 +381,6 @@ DestroyContext(Display * dpy, GLXContext ctx)
    gc->vtable->destroy(gc);
 }
 
-_X_EXPORT void
-glXDestroyContext(Display * dpy, GLXContext gc)
-{
-   DestroyContext(dpy, gc);
-}
-
 /*
 ** Return the major and minor version #s for the GLX extension
 */
@@ -1479,12 +1474,9 @@ _X_EXPORT GLXContextID glXGetContextIDEXT(const GLXContext ctx_user)
    return ctx->xid;
 }
 
-_X_EXPORT void
-glXFreeContextEXT(Display * dpy, GLXContext ctx)
-{
-   DestroyContext(dpy, ctx);
-}
-
+_X_EXPORT
+GLX_ALIAS_VOID(glXFreeContextEXT, (Display *dpy, GLXContext ctx), (dpy, ctx),
+              glXDestroyContext);
 
 _X_EXPORT GLXFBConfig *
 glXChooseFBConfig(Display * dpy, int screen,