Fix an fb regression on A8 pictures. (Fredrik Höglund)
This commit is contained in:
parent
03d37eb038
commit
b37e738d5f
|
@ -3,6 +3,9 @@
|
||||||
* hw/xfree86/common/xf86Config.c:
|
* hw/xfree86/common/xf86Config.c:
|
||||||
Bug #5359: Fix a segfault (Mark Kettenis)
|
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>
|
2005-12-19 Adam Jackson <ajax@freedesktop.org>
|
||||||
|
|
||||||
* hw/xfree86/doc/man/xorg.conf.man.pre:
|
* hw/xfree86/doc/man/xorg.conf.man.pre:
|
||||||
|
|
|
@ -881,7 +881,7 @@ fbComposite (CARD8 op,
|
||||||
case PictOpSrc:
|
case PictOpSrc:
|
||||||
#ifdef USE_MMX
|
#ifdef USE_MMX
|
||||||
if (!pMask && pSrc->format == pDst->format &&
|
if (!pMask && pSrc->format == pDst->format &&
|
||||||
pSrc->pDrawable != pDst->pDrawable)
|
pSrc->format != PICT_a8 && pSrc->pDrawable != pDst->pDrawable)
|
||||||
{
|
{
|
||||||
func = fbCompositeCopyAreammx;
|
func = fbCompositeCopyAreammx;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue