diff options
author | Kristian Høgsberg <[email protected]> | 2010-08-04 08:43:08 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-08-04 08:47:36 -0400 |
commit | 9da1c9da139327132dea57b18048a4eb386b6bad (patch) | |
tree | 435360fada3acdaee61cb9799eac11591d11a965 /src/glx/dri2_glx.c | |
parent | 8ad5b76d52f1c009f48ea90556633e497b40ba87 (diff) |
glx: dri2InvalidateBuffers() needs the X drawable XID not the GLX one
This never ceases to entertain.
Diffstat (limited to 'src/glx/dri2_glx.c')
-rw-r--r-- | src/glx/dri2_glx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c index e57d10f0913..99384f8c371 100644 --- a/src/glx/dri2_glx.c +++ b/src/glx/dri2_glx.c @@ -439,7 +439,7 @@ dri2FlushFrontBuffer(__DRIdrawable *driDrawable, void *loaderPrivate) /* Old servers don't send invalidate events */ if (!pdp->invalidateAvailable) - dri2InvalidateBuffers(priv->dpy, pdraw->base.drawable); + dri2InvalidateBuffers(priv->dpy, pdraw->base.xDrawable); dri2_wait_gl(gc); } @@ -507,7 +507,7 @@ dri2SwapBuffers(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, /* Old servers don't send invalidate events */ if (!pdp->invalidateAvailable) - dri2InvalidateBuffers(dpyPriv->dpy, pdraw->drawable); + dri2InvalidateBuffers(dpyPriv->dpy, pdraw->xDrawable); /* Old servers can't handle swapbuffers */ if (!pdp->swapAvailable) { |