From: Søren Sandmann Pedersen Date: Sun, 13 Mar 2011 00:06:02 +0000 (-0500) Subject: In delegate_{src,dest}_iter_init() call delegate directly. X-Git-Tag: pixman-0.21.8~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be4eaa0e4f79af38b7b89c5b09ca88d3a88d9396;p=platform%2Fupstream%2Fpixman.git In delegate_{src,dest}_iter_init() call delegate directly. There is no reason to go through _pixman_implementation_{src,dest}_iter_init(), especially since _pixman_implementation_src_iter_init() is doing various other checks that only need to be done once. Also call delegate->src_iter_init() directly in pixman-sse2.c --- diff --git a/pixman/pixman-implementation.c b/pixman/pixman-implementation.c index adaf9c6..892767e 100644 --- a/pixman/pixman-implementation.c +++ b/pixman/pixman-implementation.c @@ -122,7 +122,7 @@ delegate_src_iter_init (pixman_implementation_t *imp, uint8_t * buffer, iter_flags_t flags) { - _pixman_implementation_src_iter_init ( + imp->delegate->src_iter_init ( imp->delegate, iter, image, x, y, width, height, buffer, flags); } @@ -137,7 +137,7 @@ delegate_dest_iter_init (pixman_implementation_t *imp, uint8_t * buffer, iter_flags_t flags) { - _pixman_implementation_dest_iter_init ( + imp->delegate->dest_iter_init ( imp->delegate, iter, image, x, y, width, height, buffer, flags); } diff --git a/pixman/pixman-sse2.c b/pixman/pixman-sse2.c index 696005f..d4a34e9 100644 --- a/pixman/pixman-sse2.c +++ b/pixman/pixman-sse2.c @@ -6013,7 +6013,7 @@ sse2_src_iter_init (pixman_implementation_t *imp, } } - _pixman_implementation_src_iter_init ( + imp->delegate->src_iter_init ( imp->delegate, iter, image, x, y, width, height, buffer, flags); }