egl: Remove Xdpy from EGLDisplay.
It is not used anymore. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
@@ -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) {
|
||||
|
@@ -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
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user