diff options
author | Eric Anholt <anholt@freebsd.org> | 2006-04-25 15:46:04 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2006-04-25 15:46:04 +0000 |
commit | 702d9226d57ec1584de2e8a85c268795650b1094 (patch) | |
tree | 02ec1e6b26dbf1f991f626e3b2f6fa1e2eb6b788 /exa | |
parent | 39ca0867c7dd6f3bdecc52aec8df435946682098 (diff) |
Don't forget to mark the drawable as dirty in exaPutImage(). Fixes
corruption with drivers that have UTS. (Michel Dänzer)
Diffstat (limited to 'exa')
-rw-r--r-- | exa/exa_accel.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |