From e44e3482bdb4d0ebde2d8b41830ac2cdb07948fb Mon Sep 17 00:00:00 2001 From: Yang Zhang Date: Fri, 28 Aug 2015 09:58:54 +0800 Subject: Add qemu 2.4.0 Change-Id: Ic99cbad4b61f8b127b7dc74d04576c0bcbaaf4f5 Signed-off-by: Yang Zhang --- qemu/include/ui/egl-helpers.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 qemu/include/ui/egl-helpers.h (limited to 'qemu/include/ui/egl-helpers.h') diff --git a/qemu/include/ui/egl-helpers.h b/qemu/include/ui/egl-helpers.h new file mode 100644 index 000000000..5ad5dc308 --- /dev/null +++ b/qemu/include/ui/egl-helpers.h @@ -0,0 +1,16 @@ +#ifndef EGL_HELPERS_H +#define EGL_HELPERS_H + +#include +#include + +extern EGLDisplay *qemu_egl_display; +extern EGLConfig qemu_egl_config; + +EGLSurface qemu_egl_init_surface_x11(EGLContext ectx, Window win); + +int qemu_egl_init_dpy(EGLNativeDisplayType dpy, bool gles, bool debug); +EGLContext qemu_egl_init_ctx(void); +bool qemu_egl_has_ext(const char *haystack, const char *needle); + +#endif /* EGL_HELPERS_H */ -- cgit 1.2.3-korg