projects
/
platform
/
upstream
/
pixman.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb383de
)
Return immediately if the operator is CONJOINT_DST or DISJOINT_DST
author
Søren Sandmann Pedersen
<sandmann@redhat.com>
Mon, 13 Jul 2009 09:58:43 +0000
(
05:58
-0400)
committer
Søren Sandmann Pedersen
<sandmann@redhat.com>
Mon, 13 Jul 2009 09:58:43 +0000
(
05:58
-0400)
These are noops just like plain DST is.
pixman/pixman.c
patch
|
blob
|
history
diff --git
a/pixman/pixman.c
b/pixman/pixman.c
index 4c393c5dcf40723a8056c099c6d9298b44872087..fed99ee36a85198c3f481489bba9be1226cd04ea 100644
(file)
--- a/
pixman/pixman.c
+++ b/
pixman/pixman.c
@@
-123,7
+123,7
@@
pixman_image_composite (pixman_op_t op,
* The output operator should be mathematically equivalent to the source.
*/
op = pixman_optimize_operator(op, src, mask, dest);
- if(op == PIXMAN_OP_DST)
+ if(op == PIXMAN_OP_DST
|| op == PIXMAN_OP_CONJOINT_DST || op == PIXMAN_OP_DISJOINT_DST
)
return;
if (!imp)