Re: [Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-03-01 Thread Oded Gabbay
On Mon, Feb 29, 2016 at 11:33 AM, Oded Gabbay wrote: > > On Mon, Feb 29, 2016 at 7:44 AM, Ilia Mirkin wrote: > > On Mon, Feb 29, 2016 at 12:31 AM, Oded Gabbay wrote: > >> On Mon, Feb 29, 2016 at 3:51 AM, Michel Dänzer

Re: [Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-02-29 Thread Oded Gabbay
On Mon, Feb 29, 2016 at 7:44 AM, Ilia Mirkin wrote: > On Mon, Feb 29, 2016 at 12:31 AM, Oded Gabbay wrote: >> On Mon, Feb 29, 2016 at 3:51 AM, Michel Dänzer wrote: >>> On 28.02.2016 05:48, Oded Gabbay wrote: This patch

Re: [Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-02-28 Thread Ilia Mirkin
On Mon, Feb 29, 2016 at 12:31 AM, Oded Gabbay wrote: > On Mon, Feb 29, 2016 at 3:51 AM, Michel Dänzer wrote: >> On 28.02.2016 05:48, Oded Gabbay wrote: >>> This patch enables the correct detection of PIPE_FORMAT_R10G10B10A2_UINT >>> and

Re: [Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-02-28 Thread Oded Gabbay
On Mon, Feb 29, 2016 at 3:51 AM, Michel Dänzer wrote: > On 28.02.2016 05:48, Oded Gabbay wrote: >> This patch enables the correct detection of PIPE_FORMAT_R10G10B10A2_UINT >> and PIPE_FORMAT_B10G10R10A2_UINT formats in r600g in big-endian mode, by >> adjusting the order of

Re: [Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-02-28 Thread Michel Dänzer
On 28.02.2016 05:48, Oded Gabbay wrote: > This patch enables the correct detection of PIPE_FORMAT_R10G10B10A2_UINT > and PIPE_FORMAT_B10G10R10A2_UINT formats in r600g in big-endian mode, by > adjusting the order of channels in various functions. > > This enables support for

[Mesa-dev] [PATCH] r600g: Fix ARB_texture_rgb10_a2ui support in big-endian

2016-02-27 Thread Oded Gabbay
This patch enables the correct detection of PIPE_FORMAT_R10G10B10A2_UINT and PIPE_FORMAT_B10G10R10A2_UINT formats in r600g in big-endian mode, by adjusting the order of channels in various functions. This enables support for ARB_texture_rgb10_a2ui, which otherwise is not detected as supported.