mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-23 22:30:05 +01:00
Pixman merge
Make use of fbCompositeSrcAdd_8888x8x8mmx
This commit is contained in:
parent
701ccb4a22
commit
0ff7c94fcf
1 changed files with 6 additions and 1 deletions
|
|
@ -1962,7 +1962,12 @@ fbComposite (CARD8 op,
|
|||
pDst->format == PICT_a8)
|
||||
{
|
||||
srcRepeat = FALSE;
|
||||
func = fbCompositeSrcAdd_8888x8x8;
|
||||
#ifdef USE_MMX
|
||||
if (fbHaveMMX())
|
||||
func = fbCompositeSrcAdd_8888x8x8mmx;
|
||||
else
|
||||
#endif
|
||||
func = fbCompositeSrcAdd_8888x8x8;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue