summaryrefslogtreecommitdiff
path: root/src/egl/main/eglglobals.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-05-30 14:50:33 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-05-30 14:50:33 -0600
commite3805cad0d15ed25ce8f6c5a1f1ea913e5d0986a (patch)
tree644f0a12d1142269f63fc541f6aa3d41ac255a6a /src/egl/main/eglglobals.h
parent6b9b49127e575ecfae08a78b991e89cb484150a4 (diff)
egl: new eglGetProcAddress() code
The idea is to pass the call down to the device driver where an API-specific query can be made. Untested.
Diffstat (limited to 'src/egl/main/eglglobals.h')
-rw-r--r--src/egl/main/eglglobals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/egl/main/eglglobals.h b/src/egl/main/eglglobals.h
index ac85f8b8a4..14d8ea487a 100644
--- a/src/egl/main/eglglobals.h
+++ b/src/egl/main/eglglobals.h
@@ -35,6 +35,9 @@ struct _egl_global
/* XXX temporary - should be thread-specific data (TSD) */
_EGLThreadInfo *ThreadInfo;
+
+ EGLint NumDrivers;
+ _EGLDriver *Drivers[10];
};