[Pixman] [PATCH] pixel_checker: Move sRGB conversion into get_limits()

2012-08-26 Thread Søren Sandmann
From: Søren Sandmann Pedersen s...@redhat.com The sRGB conversion has to be done every time the limits are being computed. Without this fix, pixel_checker_get_min/max() will produce the wrong results when called from somewhere other than pixel_checker_check(). --- test/utils.c | 28

[Pixman] [PATCH] test/utils.c: Use pow(), not powf() in sRGB conversion routines

2012-08-26 Thread Søren Sandmann
From: Søren Sandmann Pedersen s...@redhat.com These functions are operating on double precision, so use pow() instead of powf(). --- test/utils.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils.c b/test/utils.c index df16ef5..c922ae5 100644 ---

Re: [Pixman] [RFC, PATCH 0/8] Floating point pipeline

2012-08-26 Thread Bill Spitzak
On 08/25/2012 06:45 PM, Søren Sandmann Pedersen wrote: Also note that the linear-sRGB scanline store routine is probably slower with these patches because it now uses a binary search instead of a simple table lookup. If someone has better suggestions here, I'm definitely interested. I would