Re: [Mesa-dev] [PATCH 2/3] mesa/st: Add Gallium support for EXT_texture_sRGB_R8

2018-10-29 Thread Gert Wollny
Am Montag, den 29.10.2018, 15:52 + schrieb Roland Scheidegger: > This patch should probably be split into adding the format to gallium > and using it in mesa/st. Seems reasonable, I'll give it a shot. > More comments inline. As of Ilia's comments I already work on changing the svga part,

Re: [Mesa-dev] [PATCH 2/3] mesa/st: Add Gallium support for EXT_texture_sRGB_R8

2018-10-29 Thread Roland Scheidegger
This patch should probably be split into adding the format to gallium and using it in mesa/st. More comments inline. Am 29.10.18 um 08:35 schrieb Gert Wollny: > This only adds support on the Gallium core level, for the drivers > it is likely that additional changes are needed to support the > new

Re: [Mesa-dev] [PATCH 2/3] mesa/st: Add Gallium support for EXT_texture_sRGB_R8

2018-10-29 Thread Gert Wollny
Am Montag, den 29.10.2018, 04:27 -0400 schrieb Ilia Mirkin: > On Mon, Oct 29, 2018 at 3:41 AM Gert Wollny m> wrote: > > > > This only adds support on the Gallium core level, for the drivers > > it is likely that additional changes are needed to support the > > new texture format. > > > >

Re: [Mesa-dev] [PATCH 2/3] mesa/st: Add Gallium support for EXT_texture_sRGB_R8

2018-10-29 Thread Ilia Mirkin
On Mon, Oct 29, 2018 at 3:41 AM Gert Wollny wrote: > > This only adds support on the Gallium core level, for the drivers > it is likely that additional changes are needed to support the > new texture format. > > Enables on softpipe and makes pass: >

[Mesa-dev] [PATCH 2/3] mesa/st: Add Gallium support for EXT_texture_sRGB_R8

2018-10-29 Thread Gert Wollny
This only adds support on the Gallium core level, for the drivers it is likely that additional changes are needed to support the new texture format. Enables on softpipe and makes pass: dEQP-GLES31.functional.srgb_texture_decode.skip_decode.sr8.* v2: - add include for getting GL_SR8_EXT -