From 80ab6e2aa83416d6b91357e57164b9c637a109b2 Mon Sep 17 00:00:00 2001 From: Adrian Negreanu Date: Mon, 12 Aug 2013 16:30:11 +0300 Subject: [PATCH] fix compile error when EGL_BUFFER_AGE_EXT is missing Signed-off-by: Adrian Negreanu --- clients/simple-egl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clients/simple-egl.c b/clients/simple-egl.c index 54dfe9365..4eeba0215 100644 --- a/clients/simple-egl.c +++ b/clients/simple-egl.c @@ -38,6 +38,8 @@ #include #include +#include + #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);