Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-19 Thread Manolova, Plamena
On Wed, May 18, 2016 at 8:44 PM, Ian Romanick wrote: > On 05/18/2016 11:45 AM, Manolova, Plamena wrote: > > Hi Ian, > > Thanks for reviewing! > > > > On Wed, May 18, 2016 at 4:33 PM, Ian Romanick > > wrote: > > > > On 05/17/2016 09:35 AM, Plamena Manolova wrote:

Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-18 Thread Ian Romanick
On 05/18/2016 11:45 AM, Manolova, Plamena wrote: > Hi Ian, > Thanks for reviewing! > > On Wed, May 18, 2016 at 4:33 PM, Ian Romanick > wrote: > > On 05/17/2016 09:35 AM, Plamena Manolova wrote: > > According to the EGL specifications before binding an API >

Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-18 Thread Manolova, Plamena
Hi Ian, Thanks for reviewing! On Wed, May 18, 2016 at 4:33 PM, Ian Romanick wrote: > On 05/17/2016 09:35 AM, Plamena Manolova wrote: > > According to the EGL specifications before binding an API > > we must check whether it's supported first. If not eglBindAPI > > should return EGL_FALSE and gen

Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-18 Thread Manolova, Plamena
Hi Emil, Thanks for reviewing! On Wed, May 18, 2016 at 12:11 PM, Emil Velikov wrote: > Hi Plamena, > > On 17 May 2016 at 17:35, Plamena Manolova > wrote: > > According to the EGL specifications before binding an API > > we must check whether it's supported first. If not eglBindAPI > > should r

Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-18 Thread Ian Romanick
On 05/17/2016 09:35 AM, Plamena Manolova wrote: > According to the EGL specifications before binding an API > we must check whether it's supported first. If not eglBindAPI > should return EGL_FALSE and generate a EGL_BAD_PARAMETER error. Can you provide a spec quotation? > Signed-off-by: Plamena

Re: [Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-18 Thread Emil Velikov
Hi Plamena, On 17 May 2016 at 17:35, Plamena Manolova wrote: > According to the EGL specifications before binding an API > we must check whether it's supported first. If not eglBindAPI > should return EGL_FALSE and generate a EGL_BAD_PARAMETER error. > > Signed-off-by: Plamena Manolova > --- >

[Mesa-dev] [PATCH 2/2] egl: Check if API is supported when using eglBindAPI.

2016-05-17 Thread Plamena Manolova
According to the EGL specifications before binding an API we must check whether it's supported first. If not eglBindAPI should return EGL_FALSE and generate a EGL_BAD_PARAMETER error. Signed-off-by: Plamena Manolova --- src/egl/main/eglcurrent.h | 33 ++--- 1 file cha