Re: [Mesa-dev] [PATCH 1/3] mesa/core: Add support for EXT_sRGB_write_control

2018-10-17 Thread Ilia Mirkin
On Wed, Oct 17, 2018 at 12:49 PM Ilia Mirkin wrote: > On Wed, Oct 17, 2018 at 12:38 PM Gert Wollny wrote: > > diff --git a/src/mesa/main/extensions_table.h > > b/src/mesa/main/extensions_table.h > > index 09bf923bd0..1185156f23 100644 > > --- a/src/mesa/main/extensions_table.h > > +++

Re: [Mesa-dev] [PATCH 1/3] mesa/core: Add support for EXT_sRGB_write_control

2018-10-17 Thread Ilia Mirkin
On Wed, Oct 17, 2018 at 12:38 PM Gert Wollny wrote: > > From: Gert Wollny > > This GLES extension gives the applications the control over deciding whether > the conversion from linear space to sRGB is necessary by enabling or > disabling this conversion at framebuffer write or blending time just

[Mesa-dev] [PATCH 1/3] mesa/core: Add support for EXT_sRGB_write_control

2018-10-17 Thread Gert Wollny
From: Gert Wollny This GLES extension gives the applications the control over deciding whether the conversion from linear space to sRGB is necessary by enabling or disabling this conversion at framebuffer write or blending time just like it is possible for desktop GL. Signed-off-by: Gert Wollny