diff options
author | Brian Paul <[email protected]> | 2008-05-27 16:48:23 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-27 16:48:23 -0600 |
commit | 6052af172f0241e6678cd16efac0a0f14f40146c (patch) | |
tree | defc05f9ffee989aac7faf6d7ba690f5f11e4e93 /src/egl/main/egldriver.h | |
parent | 721ba15bf4596b2e9589e7656005b387724875c3 (diff) |
minor overhaul/re-org of driver selection/loading code
Diffstat (limited to 'src/egl/main/egldriver.h')
-rw-r--r-- | src/egl/main/egldriver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index 88526e973d1..bde726e25e0 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -45,12 +45,12 @@ struct _egl_driver extern _EGLDriver *_eglMain(_EGLDisplay *dpy); -extern _EGLDriver * -_eglChooseDriver(EGLDisplay dpy); +extern const char * +_eglChooseDriver(_EGLDisplay *dpy); extern _EGLDriver * -_eglOpenDriver(_EGLDisplay *dpy, const char *driverName); +_eglOpenDriver(_EGLDisplay *dpy, const char *DriverName); extern EGLBoolean |