cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e3192c374dcfae6abc16096de394c57451022f66
commit e3192c374dcfae6abc16096de394c57451022f66 Author: Gwanglim Lee <[email protected]> Date: Sun Jul 6 20:19:28 2014 +0200 evas: gl_x11 - add missing function pointer glsym_eglSwapBuffersWithDamage Summary: added missing global function pointer to gl_x11 Test Plan: N/A Reviewers: cedric, raster, devilhorns CC: cedric Differential Revision: https://phab.enlightenment.org/D1128 Signed-off-by: Cedric BAIL <[email protected]> --- src/modules/evas/engines/gl_x11/evas_engine.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c b/src/modules/evas/engines/gl_x11/evas_engine.c index e206aa0..803129d 100644 --- a/src/modules/evas/engines/gl_x11/evas_engine.c +++ b/src/modules/evas/engines/gl_x11/evas_engine.c @@ -78,6 +78,7 @@ void (*glsym_eglDestroyImage) (EGLDisplay a, void *b) = NULL; void (*glsym_glEGLImageTargetTexture2DOES) (int a, void *b) = NULL; void *(*glsym_eglMapImageSEC) (void *a, void *b, int c, int d) = NULL; unsigned int (*glsym_eglUnmapImageSEC) (void *a, void *b, int c) = NULL; +unsigned int (*glsym_eglSwapBuffersWithDamage) (EGLDisplay a, void *b, const EGLint *d, EGLint c) = NULL; #else --
