Re: [Mesa-dev] [PATCH v2 03/11] mesa/st: add helper to return pipe_endian based on pipe_format

2016-04-15 Thread Marek Olšák
On Fri, Apr 15, 2016 at 12:01 PM, Michel Dänzer wrote: > On 14.04.2016 21:18, Oded Gabbay wrote: >> Add a helper function which receives pipe_format value and returns a >> matching pipe_endian value. It is needed because almost every call to >> st_create_texture will use this

Re: [Mesa-dev] [PATCH v2 03/11] mesa/st: add helper to return pipe_endian based on pipe_format

2016-04-15 Thread Michel Dänzer
On 14.04.2016 21:18, Oded Gabbay wrote: > Add a helper function which receives pipe_format value and returns a > matching pipe_endian value. It is needed because almost every call to > st_create_texture will use this function to send the pipe_endian value > > Signed-off-by: Oded Gabbay

[Mesa-dev] [PATCH v2 03/11] mesa/st: add helper to return pipe_endian based on pipe_format

2016-04-14 Thread Oded Gabbay
Add a helper function which receives pipe_format value and returns a matching pipe_endian value. It is needed because almost every call to st_create_texture will use this function to send the pipe_endian value Signed-off-by: Oded Gabbay ---