diff options
author | Kristian Høgsberg <krh@redhat.com> | 2009-04-09 13:16:37 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2009-04-13 13:17:53 -0400 |
commit | 7b6400a1b8d2f228fcbedf17c30a7e3924e4dd2a (patch) | |
tree | 81755c27fb2cc6997c9ba3997ca1e42d3cd133e4 /glx/glxutil.h | |
parent | 140463a197fb93d0a4bfad924efc35b860e8cc54 (diff) |
glx: Fix drawable private leak on destroy
When a drawable goes away, we don't destroy the GLX drawable in full,
since it may be current for a context. This means that when the drawable
is destroyed in full later, the backend doesn't get a chance to
destroy resources associated with the drawable (the DRI2Drawable).
With this patch, we destroy the GLX drawable in full when it goes away
and then track down all contexts that reference it and NULL their
pointers.
Diffstat (limited to 'glx/glxutil.h')
-rw-r--r-- | glx/glxutil.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/glx/glxutil.h b/glx/glxutil.h index baa490500..d1a715b4b 100644 --- a/glx/glxutil.h +++ b/glx/glxutil.h @@ -35,18 +35,11 @@ * Silicon Graphics, Inc. */ -/* relate contexts with drawables */ -extern void __glXAssociateContext(__GLXcontext *glxc); -extern void __glXDeassociateContext(__GLXcontext *glxc); - -/* drawable management */ -extern void __glXRefDrawable(__GLXdrawable *glxPriv); -extern void __glXUnrefDrawable(__GLXdrawable *glxPriv); - extern GLboolean __glXDrawableInit(__GLXdrawable *drawable, __GLXscreen *screen, DrawablePtr pDraw, int type, XID drawID, __GLXconfig *config); +extern void __glXDrawableRelease(__GLXdrawable *drawable); /* context helper routines */ extern __GLXcontext *__glXLookupContextByTag(__GLXclientState*, GLXContextTag); |