From 77c2079d526fd40fe7e00d8d9a9d30a2e5e917f0 Mon Sep 17 00:00:00 2001 From: Igor Mitsyanko Date: Wed, 21 Nov 2012 19:20:00 +0400 Subject: DGLES2: remove completely It could only be used wirh ARM target, and we now use YaGL for ttis, so remove DGLES2 completely. Signed-off-by: Igor Mitsyanko --- console.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'console.h') diff --git a/console.h b/console.h index 13ad8e011a..dee8a37158 100644 --- a/console.h +++ b/console.h @@ -166,9 +166,6 @@ struct DisplayChangeListener { void (*dpy_fill)(struct DisplayState *s, int x, int y, int w, int h, uint32_t c); void (*dpy_text_cursor)(struct DisplayState *s, int x, int y); -#ifdef CONFIG_OPENGLES - void (*dpy_updatecaption)(void); -#endif struct DisplayChangeListener *next; }; @@ -250,20 +247,6 @@ static inline void dpy_update(DisplayState *s, int x, int y, int w, int h) } } -#ifdef CONFIG_OPENGLES -static inline void dpy_updatecaption(DisplayState *s) -{ - struct DisplayChangeListener *dcl = s->listeners; - while (dcl != NULL) { - if(dcl->dpy_updatecaption != NULL) - { - dcl->dpy_updatecaption(); - } - dcl = dcl->next; - } -} -#endif - static inline void dpy_resize(DisplayState *s) { struct DisplayChangeListener *dcl = s->listeners; -- cgit v1.2.3