In _pixman_implementation_fill() don't call the delegate; call the actual implementation
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Wed, 20 May 2009 10:04:15 +0000 (06:04 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Sat, 23 May 2009 16:12:42 +0000 (12:12 -0400)
pixman/pixman-implementation.c

index 5fa16e8..86c2f37 100644 (file)
@@ -264,5 +264,5 @@ _pixman_implementation_fill (pixman_implementation_t *imp,
                             int height,
                             uint32_t xor)
 {
-    return (* imp->fill) (imp->delegate, bits, stride, bpp, x, y, width, height, xor);
+    return (* imp->fill) (imp, bits, stride, bpp, x, y, width, height, xor);
 }