diff --git a/clients/window.c b/clients/window.c index 9bc9e192..30fc67c4 100644 --- a/clients/window.c +++ b/clients/window.c @@ -111,10 +111,6 @@ struct display { struct wl_cursor_theme *cursor_theme; struct wl_cursor **cursors; - PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d; - PFNEGLCREATEIMAGEKHRPROC create_image; - PFNEGLDESTROYIMAGEKHRPROC destroy_image; - display_output_handler_t output_configure_handler; display_global_handler_t global_handler; @@ -3902,11 +3898,6 @@ display_create(int argc, char *argv[]) return NULL; #endif - d->image_target_texture_2d = - (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES"); - d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR"); - d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR"); - create_cursors(d); d->theme = theme_create(); diff --git a/clients/window.h b/clients/window.h index 17d97d6f..c86d7e78 100644 --- a/clients/window.h +++ b/clients/window.h @@ -115,12 +115,6 @@ display_acquire_window_surface(struct display *display, void display_release_window_surface(struct display *display, struct window *window); - -#ifdef HAVE_CAIRO_EGL -EGLImageKHR -display_get_image_for_egl_image_surface(struct display *display, - cairo_surface_t *surface); -#endif #endif #define SURFACE_OPAQUE 0x01