From 6f93d36915fe3a8d8c75d26af8d5b9ba58aba4e3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Wed, 20 May 2009 06:04:15 -0400 Subject: [PATCH] In _pixman_implementation_fill() don't call the delegate; call the actual implementation --- pixman/pixman-implementation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixman/pixman-implementation.c b/pixman/pixman-implementation.c index 5fa16e8..86c2f37 100644 --- a/pixman/pixman-implementation.c +++ b/pixman/pixman-implementation.c @@ -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); } -- 2.7.4