From 7c37664ed6af5c3ddf5591ef4bbd5d63981478c7 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 26 Apr 2013 13:46:00 +0100 Subject: [PATCH] Add egl extension header Add bind and unbind proc address Signed-off-by: Chris Michael --- src/bin/e_comp_wl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_comp_wl.h b/src/bin/e_comp_wl.h index 042b01bc6..7b918408a 100644 --- a/src/bin/e_comp_wl.h +++ b/src/bin/e_comp_wl.h @@ -26,6 +26,7 @@ # ifdef HAVE_WAYLAND_EGL # include +# include # 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