diff options
author | Brian Paul <[email protected]> | 2008-05-30 14:50:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-30 14:50:33 -0600 |
commit | e3805cad0d15ed25ce8f6c5a1f1ea913e5d0986a (patch) | |
tree | 644f0a12d1142269f63fc541f6aa3d41ac255a6a /src/egl/main/eglglobals.h | |
parent | 6b9b49127e575ecfae08a78b991e89cb484150a4 (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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/egl/main/eglglobals.h b/src/egl/main/eglglobals.h index ac85f8b8a4f..14d8ea487af 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]; }; |