From 702d9226d57ec1584de2e8a85c268795650b1094 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 25 Apr 2006 15:46:04 +0000 Subject: [PATCH] =?UTF-8?q?Don't=20forget=20to=20mark=20the=20drawable=20a?= =?UTF-8?q?s=20dirty=20in=20exaPutImage().=20Fixes=20=20=20=20=20corruptio?= =?UTF-8?q?n=20with=20drivers=20that=20have=20UTS.=20(Michel=20D=C3=A4nzer?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ChangeLog | 6 ++++++ exa/exa_accel.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 486e84945..1d2a0fa8a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-04-25 Eric Anholt + + * exa/exa_accel.c: (exaPutImage): + Don't forget to mark the drawable as dirty in exaPutImage(). Fixes + corruption with drivers that have UTS. (Michel Dänzer) + 2006-04-23 Donnie Berkholz * Makefile.am: diff --git a/exa/exa_accel.c b/exa/exa_accel.c index b51cd87dd..57355e673 100644 --- a/exa/exa_accel.c +++ b/exa/exa_accel.c @@ -223,6 +223,7 @@ exaPutImage (DrawablePtr pDrawable, GCPtr pGC, int depth, int x, int y, exaFinishAccess(pDrawable, EXA_PREPARE_DEST); } } + exaDrawableDirty(pDrawable); return;