summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2009-11-23 13:41:56 -0800
committerDavid Schleef <ds@schleef.org>2011-05-17 10:21:43 -0700
commit222c3452d9dde875a21779a5ccf14e952d3ee206 (patch)
treefd121ef3251ce1b5fa736abb8e6d59f09cf01b26
parent45f22591881a2477d264defb09d900ed39514f53 (diff)
orc: fix over operator
-rw-r--r--pixman/pixman-orc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/pixman/pixman-orc.c b/pixman/pixman-orc.c
index 3c14471..741e102 100644
--- a/pixman/pixman-orc.c
+++ b/pixman/pixman-orc.c
@@ -28,7 +28,7 @@
#include <orc/orc.h>
-#include "pixmanorc.h"
+#include "pixman-orccode.h"
#include "pixman-private.h"
#include "pixman-combine32.h"
@@ -45,7 +45,6 @@ orc_combine_over_u (pixman_implementation_t *imp,
const uint32_t * mask,
int width)
{
- //printf("dst %p src %p mask %p width %d\n", dst, src, mask, width);
if (mask) {
orc_code_combine_over_u (dst, src, mask, width);
} else {
@@ -61,7 +60,6 @@ orc_combine_in_u (pixman_implementation_t *imp,
const uint32_t * mask,
int width)
{
- //printf("dst %p src %p mask %p width %d\n", dst, src, mask, width);
if (mask) {
orc_code_combine_in_u (dst, src, mask, width);
} else {
@@ -463,7 +461,7 @@ _pixman_implementation_create_orc (void)
orc_init ();
- //imp->combine_32[PIXMAN_OP_OVER] = orc_combine_over_u;
+ imp->combine_32[PIXMAN_OP_OVER] = orc_combine_over_u;
//imp->combine_32[PIXMAN_OP_OVER_REVERSE] = orc_combine_over_reverse_u;
imp->combine_32[PIXMAN_OP_IN] = orc_combine_in_u;
//imp->combine_32[PIXMAN_OP_IN_REVERSE] = orc_combine_in_reverse_u;