[Pixman] [PATCH] Changed the style of two function headers to match the style of the other function headers

2012-07-08 Thread Sebastian Bauer
Declare functions *_inverse() and *_contains_rectangle() in the same way as the other functions are declared. This doesn't imply any semantic changes. It's just a unification of coding styles. --- pixman/pixman-region.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff

Re: [Pixman] More MIPS DSPr2 bilinear fast paths.

2012-07-08 Thread Siarhei Siamashka
On Mon, 2 Jul 2012 20:54:18 +0200 Nemanja Lukic nlu...@mips.com wrote: Added optimizations for several bilinear fast paths: - src__8_ - src__8_0565 - src_0565_8_x888 - src_0565_8_0565 - add__8_ - src__ - src__0565 - src_0565_ - src_0565_0565

[Pixman] [PATCH] MIPS: skip runtime detection for DSPr2 if -mdspr2 option is in CFLAGS

2012-07-08 Thread Siarhei Siamashka
This provides a way to enable MIPS DSP ASE optimizations if running under qemu-user (where /proc/cpuinfo contains information about the host processor instead of the emulated one). Can be used for running pixman test suite in qemu-user when having no access to real MIPS hardware. ---

Re: [Pixman] [PATCH] MIPS: skip runtime detection for DSPr2 if -mdspr2 option is in CFLAGS

2012-07-08 Thread Siarhei Siamashka
On Sun, 8 Jul 2012 23:26:02 +0300 Siarhei Siamashka siarhei.siamas...@gmail.com wrote: This provides a way to enable MIPS DSP ASE optimizations if running under qemu-user (where /proc/cpuinfo contains information about the host processor instead of the emulated one). Can be used for running

Re: [Pixman] [PATCH] Changed the style of two function headers to match the style of the other function headers

2012-07-08 Thread Søren Sandmann
Sebastian Bauer m...@sebastianbauer.info writes: Declare functions *_inverse() and *_contains_rectangle() in the same way as the other functions are declared. This doesn't imply any semantic changes. It's just a unification of coding styles. Pushed, thanks. Soren