Make pixman_implementation call the right combiner
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Wed, 13 May 2009 14:23:01 +0000 (10:23 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Sat, 23 May 2009 16:05:01 +0000 (12:05 -0400)
pixman/pixman-implementation.c

index 4c98fec..b9a5925 100644 (file)
@@ -162,7 +162,7 @@ _pixman_implementation_combine_32_ca (pixman_implementation_t *     imp,
                                      const uint32_t *          mask,
                                      int                       width)
 {
-    (* imp->combine_32[op]) (imp, op, dest, src, mask, width);
+    (* imp->combine_32_ca[op]) (imp, op, dest, src, mask, width);
 }
 
 void
@@ -173,7 +173,7 @@ _pixman_implementation_combine_64_ca (pixman_implementation_t *     imp,
                                      const uint64_t *          mask,
                                      int                       width)
 {
-    (* imp->combine_64[op]) (imp, op, dest, src, mask, width);
+    (* imp->combine_64_ca[op]) (imp, op, dest, src, mask, width);
 }
 
 void