diff options
author | Chia-I Wu <[email protected]> | 2009-08-26 16:06:39 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-26 16:40:22 -0600 |
commit | e1d978775f982a450bd84588a4f9567d6bbccebd (patch) | |
tree | bfa5b520c8ae8f7a8621417a571ad4194e5c8b27 /src/egl/main/egldisplay.h | |
parent | f5a06fad62cd43d7854bafa60bbe6f48e8cf90af (diff) |
egl: Remove Xdpy from EGLDisplay.
It is not used anymore.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index c7a41cd5883..6575fdf198f 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -1,10 +1,6 @@ #ifndef EGLDISPLAY_INCLUDED #define EGLDISPLAY_INCLUDED -#ifdef _EGL_PLATFORM_X -#include <X11/Xlib.h> -#endif - #include "egltypedefs.h" #include "egldefines.h" #include "eglcontext.h" @@ -54,10 +50,6 @@ struct _egl_display /* lists of linked contexts and surface */ _EGLContext *ContextList; _EGLSurface *SurfaceList; - -#ifdef _EGL_PLATFORM_X - Display *Xdpy; -#endif }; |