Re: [PATCH weston 1/3] gl-renderer: fix EGL initialization steps

2015-04-08 Thread Daniel Stone
On 8 April 2015 at 17:17, Manuel Bachmann wrote: > Looks good to me ! All three R-b and pushed; thanks. b4deec6..8b69d03 master -> master Cheers, Daniel > 2015-04-08 16:02 GMT+02:00 Pekka Paalanen : >> >> From: Manuel Bachmann >> >> Some DRI drivers, including VMware vmwgfx, do not support

Re: [PATCH weston 1/3] gl-renderer: fix EGL initialization steps

2015-04-08 Thread Manuel Bachmann
Looks good to me ! 2015-04-08 16:02 GMT+02:00 Pekka Paalanen : > From: Manuel Bachmann > > Some DRI drivers, including VMware vmwgfx, do not support > calling eglQueryString() with a EGL_NO_DISPLAY parameter. > Just as we do in gl_renderer_supports(), which returns 0 > but does not fail in this

[PATCH weston 1/3] gl-renderer: fix EGL initialization steps

2015-04-08 Thread Pekka Paalanen
From: Manuel Bachmann Some DRI drivers, including VMware vmwgfx, do not support calling eglQueryString() with a EGL_NO_DISPLAY parameter. Just as we do in gl_renderer_supports(), which returns 0 but does not fail in this case, do not fail in gl_renderer_setup_egl_extensions(). Signed-off-by: Man