mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-26 13:30:06 +01:00
Only use fbCopyAreammx if planemask is FB_ALLONES (fixes XTS5 XCopyArea
tests 22 and 23).
This commit is contained in:
parent
0b150a05e6
commit
89c661d61f
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ fbCopyNtoN (DrawablePtr pSrcDrawable,
|
|||
while (nbox--)
|
||||
{
|
||||
#ifdef USE_MMX
|
||||
if (alu == GXcopy && !reverse && !upsidedown && fbHaveMMX())
|
||||
if (pm == FB_ALLONES && alu == GXcopy && !reverse &&
|
||||
!upsidedown && fbHaveMMX())
|
||||
{
|
||||
if (!fbCopyAreammx (pSrcDrawable,
|
||||
pDstDrawable,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue