Re: [Mesa-dev] [PATCH 2/8] egl: drop unreachable BAD_NATIVE_WINDOW conditions

2017-08-08 Thread Eric Engestrom
On Tuesday, 2017-08-08 08:02:27 +0300, Tapani Pälli wrote: > > > On 08/05/2017 02:25 AM, Emil Velikov wrote: > > From: Emil Velikov > > > > The code in _eglCreatePixmapSurfaceCommon() already has a NULL check > > _eglCreateWindowSurfaceCommon() > > > which handles

Re: [Mesa-dev] [PATCH 2/8] egl: drop unreachable BAD_NATIVE_WINDOW conditions

2017-08-07 Thread Tapani Pälli
On 08/05/2017 02:25 AM, Emil Velikov wrote: From: Emil Velikov The code in _eglCreatePixmapSurfaceCommon() already has a NULL check _eglCreateWindowSurfaceCommon() which handles the condition. There's no point in checkin again further down the stack. v2:

[Mesa-dev] [PATCH 2/8] egl: drop unreachable BAD_NATIVE_WINDOW conditions

2017-08-04 Thread Emil Velikov
From: Emil Velikov The code in _eglCreatePixmapSurfaceCommon() already has a NULL check which handles the condition. There's no point in checkin again further down the stack. v2: Split the WINDOW vs PIXMAP into separate patches Cc: Eric Engestrom