diff options
author | Adrian Negreanu <adrian.m.negreanu@intel.com> | 2013-08-12 16:30:11 +0300 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-08-20 16:11:09 -0700 |
commit | 80ab6e2aa83416d6b91357e57164b9c637a109b2 (patch) | |
tree | 530b8a3d47137c5d8775fe1a4ead1ae68a5f47ad | |
parent | 5325b38dc8e84f87098d1207775c1316f5641d0f (diff) | |
download | weston-80ab6e2aa83416d6b91357e57164b9c637a109b2.tar.gz weston-80ab6e2aa83416d6b91357e57164b9c637a109b2.tar.bz2 weston-80ab6e2aa83416d6b91357e57164b9c637a109b2.zip |
fix compile error when EGL_BUFFER_AGE_EXT is missing
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
-rw-r--r-- | clients/simple-egl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clients/simple-egl.c b/clients/simple-egl.c index 54dfe936..4eeba021 100644 --- a/clients/simple-egl.c +++ b/clients/simple-egl.c @@ -38,6 +38,8 @@ #include <EGL/egl.h> #include <EGL/eglext.h> +#include <src/weston-egl-ext.h> + #ifndef EGL_EXT_swap_buffers_with_damage #define EGL_EXT_swap_buffers_with_damage 1 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC)(EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); |