From f5e3ad295ca5e50ee96437f92a415e38064394d5 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 54dfe936..4eeba021 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);