[Pixman] New development version

2015-10-11 Thread Oded Gabbay
Hi, I would like to release this week a new development version - 0.33.4 There won't be any change to commit policies to master. I didn't see any new patches in the last 2 weeks, so I think its a good time as 2.5 months have passed since the previous release. The plan is to branch 0.34 around

Re: [Pixman] Pixman not building on MacOS X 10.11

2015-10-11 Thread Andrea Canciani
On Sun, Oct 11, 2015 at 5:30 AM, Siarhei Siamashka < siarhei.siamas...@gmail.com> wrote: > On Sun, 11 Oct 2015 04:53:08 +0300 > Siarhei Siamashka wrote: > > > On Sat, 10 Oct 2015 16:03:53 -0700 > > Jeremy Huddleston Sequoia wrote: > > > > >

[Pixman] [PATCH] mmx: Use MMX2 intrinsics from xmmintrin.h directly.

2015-10-11 Thread Matt Turner
We had lots of hacks to handle the inability to include xmmintrin.h without compiling with -msse (lest SSE instructions be used in pixman-mmx.c). Some recent version of gcc relaxed this restriction. Change configure.ac to test that xmmintrin.h can be included and that we can use some intrinsics

Re: [Pixman] [PATCH] mmx: Use MMX2 intrinsics from xmmintrin.h directly.

2015-10-11 Thread Siarhei Siamashka
On Sun, 11 Oct 2015 14:55:28 -0700 Matt Turner wrote: Hello, Thanks. The patch looks good. In fact, it also allows the MMX code to be compiled with the Intel Compiler now (previously it was disabled by the configure check). A few minor things need to be fixed though. See the

[Pixman] [PATCH] mmx: Use MMX2 intrinsics from xmmintrin.h directly.

2015-10-11 Thread Matt Turner
We had lots of hacks to handle the inability to include xmmintrin.h without compiling with -msse (lest SSE instructions be used in pixman-mmx.c). Some recent version of gcc relaxed this restriction. Change configure.ac to test that xmmintrin.h can be included and that we can use some intrinsics

Re: [Pixman] [PATCH] mmx: Use MMX2 intrinsics from xmmintrin.h directly.

2015-10-11 Thread Matt Turner
On Sun, Oct 11, 2015 at 8:41 PM, Siarhei Siamashka wrote: > On Sun, 11 Oct 2015 14:55:28 -0700 > Matt Turner wrote: > > Hello, > > Thanks. The patch looks good. In fact, it also allows the MMX code to > be compiled with the Intel Compiler now