mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 04:28:02 +02:00
Add call to fbCompositeSrcSrc_nxn that I missed.
This commit is contained in:
parent
d3661b0d53
commit
c36fd95f6e
2 changed files with 11 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue