summaryrefslogtreecommitdiff
path: root/console.h
diff options
context:
space:
mode:
authorIgor Mitsyanko <i.mitsyanko@samsung.com>2012-11-21 19:20:00 +0400
committerEvgeny Voevodin <e.voevodin@samsung.com>2012-11-26 13:25:43 +0400
commit77c2079d526fd40fe7e00d8d9a9d30a2e5e917f0 (patch)
treee2f1b64f0732cccff8ed39a064f8d1702ecef705 /console.h
parent4bcf90769e12434cc2c6667272b0a4269d5b5b1e (diff)
downloadqemu-77c2079d526fd40fe7e00d8d9a9d30a2e5e917f0.tar.gz
qemu-77c2079d526fd40fe7e00d8d9a9d30a2e5e917f0.tar.bz2
qemu-77c2079d526fd40fe7e00d8d9a9d30a2e5e917f0.zip
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 <i.mitsyanko@samsung.com>
Diffstat (limited to 'console.h')
-rw-r--r--console.h17
1 files changed, 0 insertions, 17 deletions
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;