From a4d62bbf215894bad8e19d99f7330c637d3d49e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Tue, 4 Nov 2008 11:27:53 +0100 Subject: [PATCH] AIGLX: Reinstate call to driver texOffsetFinish hook. It was accidentally lost when factoring out __glXDRIdoReleaseTexImage, so this is a regression fix and should probably be backported to server-1.5-branch. --- glx/glxdri.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glx/glxdri.c b/glx/glxdri.c index 50a51790f..090e7ef97 100644 --- a/glx/glxdri.c +++ b/glx/glxdri.c @@ -189,6 +189,8 @@ __glXDRIdoReleaseTexImage(__GLXDRIscreen *screen, __GLXDRIdrawable *drawable) for (i = 0; i < lastOverride; i++) { if (texOffsetOverride[i] == drawable) { + if (screen->texOffsetFinish) + screen->texOffsetFinish((PixmapPtr)drawable->base.pDraw); texOffsetOverride[i] = NULL;