Module: Mesa Branch: master Commit: e1d978775f982a450bd84588a4f9567d6bbccebd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e1d978775f982a450bd84588a4f9567d6bbccebd
Author: Chia-I Wu <[email protected]> Date: Wed Aug 26 16:06:39 2009 +0800 egl: Remove Xdpy from EGLDisplay. It is not used anymore. Signed-off-by: Chia-I Wu <[email protected]> --- src/egl/main/egldisplay.c | 3 --- src/egl/main/egldisplay.h | 8 -------- 2 files changed, 0 insertions(+), 11 deletions(-) diff --git a/src/egl/main/egldisplay.c b/src/egl/main/egldisplay.c index 2c271ef..896d60d 100644 --- a/src/egl/main/egldisplay.c +++ b/src/egl/main/egldisplay.c @@ -81,9 +81,6 @@ _eglNewDisplay(NativeDisplayType nativeDisplay) _EGLDisplay *dpy = (_EGLDisplay *) calloc(1, sizeof(_EGLDisplay)); if (dpy) { dpy->NativeDisplay = nativeDisplay; -#if defined(_EGL_PLATFORM_X) - dpy->Xdpy = (Display *) nativeDisplay; -#endif dpy->DriverName = _eglPreloadDriver(dpy); if (!dpy->DriverName) { diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index c7a41cd..6575fdf 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 }; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
