diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 9d712613c..51221b129 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -20,6 +20,7 @@ Google Inc. Nat Duca Vangelis Kokkevis Zhenyao Mo + Daniel Nicoara Alastair Patrick Alok Priyadarshi Kenneth Russell diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h index 6d34ab55d..299eac52b 100644 --- a/include/EGL/eglplatform.h +++ b/include/EGL/eglplatform.h @@ -83,6 +83,12 @@ typedef int EGLNativeDisplayType; typedef void *EGLNativeWindowType; typedef void *EGLNativePixmapType; +#elif defined(WL_EGL_PLATFORM) + +typedef struct wl_display *EGLNativeDisplayType; +typedef struct wl_egl_pixmap *EGLNativePixmapType; +typedef struct wl_egl_window *EGLNativeWindowType; + #elif defined(__unix__) /* X11 (tentative) */ diff --git a/src/common/version.h b/src/common/version.h index b6a12bb2e..d5f6bb843 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -1,7 +1,7 @@ #define MAJOR_VERSION 0 #define MINOR_VERSION 0 #define BUILD_VERSION 0 -#define BUILD_REVISION 708 +#define BUILD_REVISION 709 #define STRINGIFY(x) #x #define MACRO_STRINGIFY(x) STRINGIFY(x)