diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-11-04 11:27:53 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-11-04 11:27:53 +0100 |
commit | a4d62bbf215894bad8e19d99f7330c637d3d49e3 (patch) | |
tree | 401ae1fa095167858d92b3992e179c8b6fe121bc /glx | |
parent | 27f1ad466cd9662d638f4a8e59beafc32a8b2a8f (diff) |
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.
Diffstat (limited to 'glx')
-rw-r--r-- | glx/glxdri.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |