Evas GL: Fix build error on some systems w/o Wayland

Thanks Mythri for the report.
wl_display and wl_resource is declared in eglmesaext.h but older
systems may not have that.
This commit is contained in:
Jean-Philippe Andre 2015-03-03 20:57:59 +09:00
parent bea9567d0e
commit be3b011822
1 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,11 @@ typedef _getproc_fn (*fp_getproc)(const char *);
# define EGL_NATIVE_PIXMAP_KHR 0x30b0
#endif
#ifndef EGL_WL_bind_wayland_display
struct wl_display;
struct wl_resource;
#endif
/////////////////////////////////////////////////////////////////////////////////////////////////////
// Extension HEADER
/////////////////////////////////////////////////////////////////////////////////////////////////////