Add egl extension header

Add bind and unbind proc address

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-04-26 13:46:00 +01:00
parent a07d830ce2
commit 7c37664ed6
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,7 @@
# ifdef HAVE_WAYLAND_EGL
# include <EGL/egl.h>
# include <EGL/eglext.h>
# endif
# define container_of(ptr, type, member) ({ \
@ -270,6 +271,9 @@ struct _E_Wayland_Compositor
EGLDisplay display;
EGLContext context;
EGLConfig config;
PFNEGLBINDWAYLANDDISPLAYWL bind_display;
PFNEGLUNBINDWAYLANDDISPLAYWL unbind_display;
Eina_Bool bound : 1;
} egl;
#endif