Change xen_host_pci_sysfs_path() to return void
[qemu/ar7.git] / include / ui / egl-helpers.h
blob5ad5dc30816ad72c566c7a6a9c053cfe78309ff5
1 #ifndef EGL_HELPERS_H
2 #define EGL_HELPERS_H
4 #include <epoxy/gl.h>
5 #include <epoxy/egl.h>
7 extern EGLDisplay *qemu_egl_display;
8 extern EGLConfig qemu_egl_config;
10 EGLSurface qemu_egl_init_surface_x11(EGLContext ectx, Window win);
12 int qemu_egl_init_dpy(EGLNativeDisplayType dpy, bool gles, bool debug);
13 EGLContext qemu_egl_init_ctx(void);
14 bool qemu_egl_has_ext(const char *haystack, const char *needle);
16 #endif /* EGL_HELPERS_H */