diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2006-12-19 18:45:25 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-12-19 18:45:25 +0100 |
commit | 467c00cf450826e0bf06fe94470ec193af625d68 (patch) | |
tree | a1f67a2bb1d9ec1b4786e2a704f5598cd0264999 /exa | |
parent | 4334860e69e7d5b156082bd05c7a86708e5bad4c (diff) |
exaGlyphs: mark dirty for software path also.
This affects drivers with no UploadToScreen or UploadToScreen failures.
Diffstat (limited to 'exa')
-rw-r--r-- | exa/exa_render.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exa/exa_render.c b/exa/exa_render.c index a73582000..be7c2403b 100644 --- a/exa/exa_render.c +++ b/exa/exa_render.c @@ -1034,11 +1034,11 @@ exaGlyphs (CARD8 op, exaCopyArea (&pScratchPixmap->drawable, &pPixmap->drawable, pGC, 0, 0, glyph->info.width, glyph->info.height, 0, 0); - } else { - exaDrawableDirty (&pPixmap->drawable, 0, 0, - glyph->info.width, glyph->info.height); } + exaDrawableDirty (&pPixmap->drawable, 0, 0, + glyph->info.width, glyph->info.height); + if (maskFormat) { exaComposite (PictOpAdd, pPicture, NULL, pMask, 0, 0, 0, 0, |