Re: [PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-11-28 Thread Pekka Paalanen
On Thu, 27 Nov 2014 15:58:51 +0100 Niels Ole Salscheider niels_...@salscheider-online.de wrote: Hi, first a general question, since I'm at loss here on the big picture: How does all this relate to the cms-static and cms-colord modules already in Weston? Are those modules only about

Re: [PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-11-27 Thread Pekka Paalanen
Hi, first a general question, since I'm at loss here on the big picture: How does all this relate to the cms-static and cms-colord modules already in Weston? Are those modules only about configuring the output's color space? And then this work simply leverages that to have some output color

Re: [PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-11-27 Thread Niels Ole Salscheider
Hi, first a general question, since I'm at loss here on the big picture: How does all this relate to the cms-static and cms-colord modules already in Weston? Are those modules only about configuring the output's color space? And then this work simply leverages that to have some output

Re: [PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-11-27 Thread Kai-Uwe Behrmann
Am 27.11.2014 um 15:58 schrieb Niels Ole Salscheider: #define WL_HIDE_DEPRECATED #include wayland-server.h @@ -40,6 +41,10 @@ extern C { #include config-parser.h #include zalloc.h +#ifdef HAVE_LCMS +#include lcms2.h +#endif + #ifndef MIN #define MIN(x,y) (((x) (y)) ? (x) :

Re: [PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-10-15 Thread Bryce Harrington
On Mon, Oct 13, 2014 at 07:40:47PM +0200, Niels Ole Salscheider wrote: This implements the functionality to attach a profile to a surface in weston. An LUT is built from the profile that can be used to transform colors from the input color space to the blending color space. An sRGB color

[PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-10-13 Thread Niels Ole Salscheider
This implements the functionality to attach a profile to a surface in weston. An LUT is built from the profile that can be used to transform colors from the input color space to the blending color space. An sRGB color space is assumed for all newly created outputs This patch uses the sRGB color

Re: [RFC PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-03-31 Thread Kai-Uwe Behrmann
Am 30.03.2014 13:36, schrieb Niels Ole Salscheider: This implements the functionality to attach a profile to a surface in weston. An LUT is built from the profile that can be used to transform colors from the input color space to the blending color space. This patch uses the sRGB color space

[RFC PATCH 2/6] Attach input profiles and build corresponding LUTs

2014-03-30 Thread Niels Ole Salscheider
This implements the functionality to attach a profile to a surface in weston. An LUT is built from the profile that can be used to transform colors from the input color space to the blending color space. This patch uses the sRGB color space as blending space because it uses 8 bit LUTs for now and