[Pixman] [PATCH] Fix MSVC compilation (only up to three SSE intrinsics supported in function declaration)

2012-05-19 Thread Ingmar Runge
From: Ingmar Runge ing...@irsoft.de --- pixman/pixman-mmx.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pixman/pixman-mmx.c b/pixman/pixman-mmx.c index 01a2bc9..eb02d1a 100644 --- a/pixman/pixman-mmx.c +++ b/pixman/pixman-mmx.c @@ -598,14 +598,14 @@

Re: [Pixman] [PATCH] Fix MSVC compilation (only up to three SSE intrinsics supported in function declaration)

2012-05-19 Thread Matt Turner
On Sat, May 19, 2012 at 9:45 AM, Ingmar Runge ing...@irsoft.de wrote: From: Ingmar Runge ing...@irsoft.de ---  pixman/pixman-mmx.c |    9 +++--  1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pixman/pixman-mmx.c b/pixman/pixman-mmx.c index 01a2bc9..eb02d1a 100644 ---

Re: [Pixman] [PATCH] Fix MSVC compilation (only up to three SSE intrinsics supported in function declaration)

2012-05-19 Thread Søren Sandmann
Matt Turner matts...@gmail.com writes: I'm not sure if we want #ifndef _MSC_VER pack_4x565 pix_add_mul #else pack_4x565 pix_add_mul #endif or if we want #ifndef _MSC_VER pack_4x565 #else pack_4x565 #endif #ifndef _MSC_VER pix_add_mul #else pix_add_mul #endif Soren? The