#include #include #define GLFW_INCLUDE_NONE #include #define GLFW_EXPOSE_NATIVE_X11 #include struct ANativeWindow { GLFWwindow *glfw; }; EGLDisplay eglGetDisplay(EGLNativeDisplayType native_display) { static union { EGLDisplay (*fun)(EGLNativeDisplayType); void *ptr; } orig; if (!orig.ptr) orig.ptr = dlsym(RTLD_NEXT, "eglGetDisplay"); return orig.fun(glfwGetX11Display()); } EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, NativeWindowType native_window, EGLint const *attrib_list) { static union { EGLSurface (*fun)(EGLDisplay, EGLConfig, NativeWindowType, EGLint const*); void *ptr; } orig; if (!orig.ptr) orig.ptr = dlsym(RTLD_NEXT, "eglCreateWindowSurface"); struct ANativeWindow *window = (struct ANativeWindow*)native_window; return orig.fun(display, config, glfwGetX11Window(window->glfw), attrib_list); }