Re: [Pixman] [RFC] Performance statistics analyzer

2011-09-15 Thread Taekyun Kim
On 09/07/2011 10:46 PM, Maarten Bosmans wrote: I took this RFC to also be a request for patches. Attached is a patch that strips out the pthread mutex usage and implements some macros in pixman-compiler.h, not unlike the TLS macros. I also added a win32 implementation and tested it using mingw.

Re: [Pixman] [PATCH 1/3] Add CLEAR and SRC linear interpolation operators

2011-09-15 Thread Søren Sandmann
Chris Wilson writes: > Cairo, for instance, has a subtly different interpretation of how to use > the mask in combination with the Porter-Duff operators. In particular, > it has the notion of a clip mask, for which pixman has no parallel. > > Quoting Soeren: > > Another aspect is that cairo use

Re: [Pixman] [PATCH 1/3] Add CLEAR and SRC linear interpolation operators

2011-09-15 Thread Chris Wilson
On Thu, 15 Sep 2011 11:36:57 +0200, sandm...@cs.au.dk (=?utf-8?Q?S=C3=B8ren?= Sandmann) wrote: > Chris Wilson writes: > > > Cairo, for instance, has a subtly different interpretation of how to use > > the mask in combination with the Porter-Duff operators. In particular, > > it has the notion of

Re: [Pixman] [PATCH 1/3] Add CLEAR and SRC linear interpolation operators

2011-09-15 Thread Søren Sandmann
Chris Wilson writes: >> Did you see Taekyun Kim's reply to this? He proposes this API: >> >> pixman_image_composite_xrender(op, src, shape, clip, dst) >> pixman_image_composite_bounded(op, src, shape, clip, dst) >> pixman_image_composite_simple(op, src, shape, clip, dst) >> >> in

Re: [Pixman] [PATCH 1/3] Add CLEAR and SRC linear interpolation operators

2011-09-15 Thread Chris Wilson
On Thu, 15 Sep 2011 13:26:09 +0200, sandm...@cs.au.dk (=?utf-8?Q?S=C3=B8ren?= Sandmann) wrote: > Chris Wilson writes: > > >> Did you see Taekyun Kim's reply to this? He proposes this API: > >> > >> pixman_image_composite_xrender(op, src, shape, clip, dst) > >> pixman_image_composite_b

[Pixman] [PATCH] Fix build on cygwin after commit efdf65c0c4fff551fb3cd9104deda9adb6261e22

2011-09-15 Thread Jon TURNEY
libutils depends on pixman and so needs to preceed it in the link order Found by tinderbox, see [1] [1] http://tinderbox.freedesktop.org/builds/2011-09-15-0005/logs/pixman/#build Signed-off-by: Jon TURNEY --- test/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --

Re: [Pixman] [PATCH 1/3] Add CLEAR and SRC linear interpolation operators

2011-09-15 Thread Bill Spitzak
Søren Sandmann wrote: Chris Wilson writes: Cairo, for instance, has a subtly different interpretation of how to use the mask in combination with the Porter-Duff operators. In particular, it has the notion of a clip mask, for which pixman has no parallel. Quoting Soeren: Another aspect is