Re: [Mesa-dev] [PATCH] st/dri: Add support for PIPE_FORMAT_RGBX8888_UNORM

2017-06-22 Thread Lepton Wu
Hi All, So it turns out someone else have a much complete fix for this issue and I think I can wait that CL to land in mesa. Feel free to drop this CL. Thanks all for your review. On Tue, Jun 20, 2017 at 2:06 AM, Emil Velikov wrote: > Hi Lepton, > > On 19 June 2017 at 18:51, Lepton Wu wrote:

Re: [Mesa-dev] [PATCH] st/dri: Add support for PIPE_FORMAT_RGBX8888_UNORM

2017-06-20 Thread Emil Velikov
Hi Lepton, On 19 June 2017 at 18:51, Lepton Wu wrote: > The original dri2_format_to_pipe_format function just misses case branch > for __DRI_IMAGE_FORMAT_XBGR. I discovered this when debugging one google > map crash inside emulator. > > Signed-off-by: Lepton Wu > --- > src/gallium/state_tra

Re: [Mesa-dev] [PATCH] st/dri: Add support for PIPE_FORMAT_RGBX8888_UNORM

2017-06-20 Thread Emil Velikov
On 19 June 2017 at 18:51, Lepton Wu wrote: > The original dri2_format_to_pipe_format function just misses case branch > for __DRI_IMAGE_FORMAT_XBGR. I discovered this when debugging one google > map crash inside emulator. > > Signed-off-by: Lepton Wu > --- > src/gallium/state_trackers/dri/dr

Re: [Mesa-dev] [PATCH] st/dri: Add support for PIPE_FORMAT_RGBX8888_UNORM

2017-06-19 Thread Varad Gautam
On Mon, Jun 19, 2017 at 11:21 PM, Lepton Wu wrote: > The original dri2_format_to_pipe_format function just misses case branch > for __DRI_IMAGE_FORMAT_XBGR. I discovered this when debugging one google > map crash inside emulator. > > Signed-off-by: Lepton Wu > --- > src/gallium/state_tracker

[Mesa-dev] [PATCH] st/dri: Add support for PIPE_FORMAT_RGBX8888_UNORM

2017-06-19 Thread Lepton Wu
The original dri2_format_to_pipe_format function just misses case branch for __DRI_IMAGE_FORMAT_XBGR. I discovered this when debugging one google map crash inside emulator. Signed-off-by: Lepton Wu --- src/gallium/state_trackers/dri/dri2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git