Add call to fbCompositeSrcSrc_nxn that I missed.

This commit is contained in:
Jeff Muizelaar 2005-07-16 11:27:32 +00:00
parent d3661b0d53
commit c36fd95f6e
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-07-16 Jeff Muizelaar <jeff@infidigm.net>
* src/ic.c: (pixman_composite):
Add call to fbCompositeSrcSrc_nxn that I missed.
2005-07-14 Carl Worth <cworth@cworth.org>
* src/icimage.c: (pixman_image_set_component_alpha): Whitespace fix.

View file

@ -1252,6 +1252,12 @@ pixman_composite (pixman_operator_t op,
}
}
break;
case PIXMAN_OPERATOR_SRC:
if (pMask == 0)
{
if (pSrc->format_code == pDst->format_code)
func = fbCompositeSrcSrc_nxn;
}
default:
func = pixman_compositeGeneral;
break;