window: remove dead EGL code

- remove unimplemented function from header
- remove the egl function pointers that were not used

Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
This commit is contained in:
Pekka Paalanen 2012-10-16 17:27:16 +03:00 committed by Kristian Høgsberg
parent b984e40c28
commit 53e58485a5
2 changed files with 0 additions and 15 deletions

View File

@ -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();

View File

@ -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