[Pixman] [PATCH 3/3] Move bilinear interpolation to pixman-inlines.h

2011-08-15 Thread Søren Sandmann
From: Søren Sandmann Pedersen --- pixman/pixman-bits-image.c | 91 pixman/pixman-inlines.h| 91 2 files changed, 91 insertions(+), 91 deletions(-) diff --git a/pixman/pixman-bits-image.c b/pixman/p

[Pixman] [PATCH 2/3] Use repeat() function from pixman-inlines.h in pixman-bits-image.c

2011-08-15 Thread Søren Sandmann
From: Søren Sandmann Pedersen The repeat() functionality was duplicated between pixman-bits-image.c and pixman-inlines.h --- pixman/pixman-bits-image.c | 57 +++ 1 files changed, 15 insertions(+), 42 deletions(-) diff --git a/pixman/pixman-bits-image.c

[Pixman] Consolidate some inlined functions

2011-08-15 Thread Søren Sandmann
These three patches rename pixman-fast-path.h to pixman-inlines.h, since this file is not really specific to the fast path implementation, and then it moves some code from the general implementation into that file: the repeat functionality, which was duplicated, and the bilinear interpolation code.