Fix an fb regression on A8 pictures. (Fredrik Höglund)

This commit is contained in:
Adam Jackson 2005-12-20 21:40:19 +00:00
parent 03d37eb038
commit b37e738d5f
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@
* hw/xfree86/common/xf86Config.c:
Bug #5359: Fix a segfault (Mark Kettenis)
* fb/fbpict.c:
Fix an fb regression on A8 pictures. (Fredrik Höglund)
2005-12-19 Adam Jackson <ajax@freedesktop.org>
* hw/xfree86/doc/man/xorg.conf.man.pre:

View File

@ -881,7 +881,7 @@ fbComposite (CARD8 op,
case PictOpSrc:
#ifdef USE_MMX
if (!pMask && pSrc->format == pDst->format &&
pSrc->pDrawable != pDst->pDrawable)
pSrc->format != PICT_a8 && pSrc->pDrawable != pDst->pDrawable)
{
func = fbCompositeCopyAreammx;
}