Bug fix in fbCompositeIn_nx8x8888
Make sure both halves of the dst word is set to zero when the masks are both 0.
This commit is contained in:
parent
ae04f2cb0a
commit
6c4f1826bf
|
@ -1900,7 +1900,7 @@ fbCompositeSolidMaskSrc_nx8x8888mmx (CARD8 op,
|
|||
}
|
||||
else
|
||||
{
|
||||
*dst = 0;
|
||||
*(ullong *)dst = 0;
|
||||
}
|
||||
|
||||
mask += 2;
|
||||
|
|
Loading…
Reference in New Issue