Re: [waffle] [PATCH 5/7] egl: Optionally dlsym eglGetPlatformDisplay

2016-10-19 Thread Chad Versace
On Tue 18 Oct 2016, Emil Velikov wrote: > On 18 October 2016 at 17:58, Chad Versace wrote: > > +#define RETRIEVE_EGL_SYMBOL_OPTIONAL(function) \ > > +self->function = dlsym(self->eglHandle, #function); > > + > Not 100% sure if dlsym should be used here. Need to double-c

Re: [waffle] [PATCH 5/7] egl: Optionally dlsym eglGetPlatformDisplay

2016-10-18 Thread Emil Velikov
On 18 October 2016 at 17:58, Chad Versace wrote: > +#define RETRIEVE_EGL_SYMBOL_OPTIONAL(function) \ > +self->function = dlsym(self->eglHandle, #function); > + Not 100% sure if dlsym should be used here. Need to double-check if exposing the EGL 1.5 isn't "against the ru

[waffle] [PATCH 5/7] egl: Optionally dlsym eglGetPlatformDisplay

2016-10-18 Thread Chad Versace
Not yet used. --- src/waffle/egl/wegl_imports.h | 4 src/waffle/egl/wegl_platform.c | 6 ++ src/waffle/egl/wegl_platform.h | 4 3 files changed, 14 insertions(+) diff --git a/src/waffle/egl/wegl_imports.h b/src/waffle/egl/wegl_imports.h index 99e79c8..3f39b9e 100644 --- a/src/waffl