Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-29 Thread Tapani Pälli
On 09/29/2016 09:55 PM, Marek Olšák wrote: On Thu, Sep 29, 2016 at 6:23 PM, Emil Velikov wrote: On 27 September 2016 at 13:47, Marek Olšák wrote: On Tue, Sep 27, 2016 at 2:34 PM, Emil Velikov wrote: On 26 September 2016 at 08:41, Tapani Pälli wrote: This fixes a crash in egl-create-msaa

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-29 Thread Marek Olšák
On Thu, Sep 29, 2016 at 6:23 PM, Emil Velikov wrote: > On 27 September 2016 at 13:47, Marek Olšák wrote: >> On Tue, Sep 27, 2016 at 2:34 PM, Emil Velikov >> wrote: >>> On 26 September 2016 at 08:41, Tapani Pälli wrote: This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-29 Thread Emil Velikov
On 27 September 2016 at 13:47, Marek Olšák wrote: > On Tue, Sep 27, 2016 at 2:34 PM, Emil Velikov > wrote: >> On 26 September 2016 at 08:41, Tapani Pälli wrote: >>> This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test >>> and same crash in many dEQP EGL tests. >>> >>> I also found

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-27 Thread Tapani Pälli
On 09/28/2016 12:19 AM, Ian Romanick wrote: On 09/26/2016 12:41 AM, Tapani Pälli wrote: This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test and same crash in many dEQP EGL tests. I also found that some Qt example did a workaround because of this crash: https://bugreports.qt.io/bro

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-27 Thread Ian Romanick
On 09/26/2016 12:41 AM, Tapani Pälli wrote: > This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test > and same crash in many dEQP EGL tests. > > I also found that some Qt example did a workaround because of this > crash: https://bugreports.qt.io/browse/QTBUG-47509 Eh... I would have t

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-27 Thread Marek Olšák
On Tue, Sep 27, 2016 at 2:34 PM, Emil Velikov wrote: > On 26 September 2016 at 08:41, Tapani Pälli wrote: >> This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test >> and same crash in many dEQP EGL tests. >> >> I also found that some Qt example did a workaround because of this >> cras

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-27 Thread Emil Velikov
On 26 September 2016 at 08:41, Tapani Pälli wrote: > This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test > and same crash in many dEQP EGL tests. > > I also found that some Qt example did a workaround because of this > crash: https://bugreports.qt.io/browse/QTBUG-47509 > > Signed-off

Re: [Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-26 Thread Marek Olšák
Sounds good to me. I think only legacy applications would use pbuffers. There is no reason to use pbuffers on anything that has GL_ARB_framebuffer_object (pbuffers were use to do render-to-texture when FBOs didn't exist). Reviewed-by: Marek Olšák Marek On Mon, Sep 26, 2016 at 9:41 AM, Tapani Pä

[Mesa-dev] [RFC] egl: stop claiming support for pbuffer + msaa (RFC)

2016-09-26 Thread Tapani Pälli
This fixes a crash in egl-create-msaa-pbuffer-surface Piglit test and same crash in many dEQP EGL tests. I also found that some Qt example did a workaround because of this crash: https://bugreports.qt.io/browse/QTBUG-47509 Signed-off-by: Tapani Pälli --- This is RFC as I'm not sure if we are su