diff options
author | Brian Paul <[email protected]> | 2008-05-28 12:56:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-28 12:56:36 -0600 |
commit | 0c8908c411c434eda318b41b4f2a370a1e794831 (patch) | |
tree | d8a1fd0e24383fb3f5e279f33da4c5f8b4c271c5 /src/egl/main/egldriver.h | |
parent | e94d383b9ba7964da9fefac2a55e10c00ee72392 (diff) |
egl: added args string to _eglMain()
Diffstat (limited to 'src/egl/main/egldriver.h')
-rw-r--r-- | src/egl/main/egldriver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index bde726e25e0..9c505880b7a 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -42,7 +42,7 @@ struct _egl_driver }; -extern _EGLDriver *_eglMain(_EGLDisplay *dpy); +extern _EGLDriver *_eglMain(_EGLDisplay *dpy, const char *args); extern const char * @@ -50,7 +50,7 @@ _eglChooseDriver(_EGLDisplay *dpy); extern _EGLDriver * -_eglOpenDriver(_EGLDisplay *dpy, const char *DriverName); +_eglOpenDriver(_EGLDisplay *dpy, const char *driverName, const char *args); extern EGLBoolean |