diff options
author | Chia-I Wu <[email protected]> | 2009-08-10 16:37:28 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-11 22:14:35 -0600 |
commit | 0e3687e33dd482115c1a0e39c50b424936cb05a6 (patch) | |
tree | 46414ccec9fd77e32b9158b4cf90b6884c6eeb1d /src/egl/main/eglglobals.h | |
parent | 413969a92052c019bcf3c5bf48cf564613eba598 (diff) |
egl: Make _eglGlobal initialize statically.
Now that display and surface hash tables are moved out, _eglGlobal can
be initialized statically.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/egl/main/eglglobals.h')
-rw-r--r-- | src/egl/main/eglglobals.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/egl/main/eglglobals.h b/src/egl/main/eglglobals.h index 47fd943fd53..2f3c211476f 100644 --- a/src/egl/main/eglglobals.h +++ b/src/egl/main/eglglobals.h @@ -11,8 +11,6 @@ */ struct _egl_global { - EGLBoolean Initialized; - EGLScreenMESA FreeScreenHandle; /* bitmaks of supported APIs (supported by _some_ driver) */ @@ -28,12 +26,4 @@ struct _egl_global extern struct _egl_global _eglGlobal; -extern void -_eglInitGlobals(void); - - -extern void -_eglDestroyGlobals(void); - - #endif /* EGLGLOBALS_INCLUDED */ |