Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-video
[mesa.git] / src / egl / main / eglglobals.h
index 1e2c67426306dc8eee2960c9f275e5d3e549d107..c3771a8ef10bebe7feb55968d39aeaf185a4de22 100644 (file)
@@ -1,9 +1,8 @@
 #ifndef EGLGLOBALS_INCLUDED
 #define EGLGLOBALS_INCLUDED
 
+
 #include "egltypedefs.h"
-#include "eglhash.h"
-#include "eglcurrent.h"
 #include "eglmutex.h"
 
 
 struct _egl_global
 {
    _EGLMutex *Mutex;
-   EGLScreenMESA FreeScreenHandle;
-
-   /* bitmaks of supported APIs (supported by _some_ driver) */
-   EGLint ClientAPIsMask;
-
-   char ClientAPIs[1000];   /**< updated by eglQueryString */
 
-   EGLint NumDrivers;
-   _EGLDriver *Drivers[10];
+   /* the list of all displays */
+   _EGLDisplay *DisplayList;
 
    EGLint NumAtExitCalls;
    void (*AtExitCalls[10])(void);