diff options
author | Chia-I Wu <[email protected]> | 2010-01-19 18:29:21 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-20 17:40:07 +0800 |
commit | 57929eda3e876dc60be7060237a669f042be2376 (patch) | |
tree | f926ddc9ebf116050ae452a01434ba1cb28103c6 /src/egl/main/egldisplay.c | |
parent | b3bcd33f7a8b32ce4ea6e979e9cc764d0f903ae9 (diff) |
egl: Use _eglPreloadDrivers.
Replace the use of _eglPreloadDriver by _eglPreloadDrivers. The latter
supports EGL_DISPLAY which have a better chance to "just work".
Diffstat (limited to 'src/egl/main/egldisplay.c')
-rw-r--r-- | src/egl/main/egldisplay.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/egl/main/egldisplay.c b/src/egl/main/egldisplay.c index 896d60dbe10..a65ac6e969c 100644 --- a/src/egl/main/egldisplay.c +++ b/src/egl/main/egldisplay.c @@ -81,12 +81,6 @@ _eglNewDisplay(NativeDisplayType nativeDisplay) _EGLDisplay *dpy = (_EGLDisplay *) calloc(1, sizeof(_EGLDisplay)); if (dpy) { dpy->NativeDisplay = nativeDisplay; - - dpy->DriverName = _eglPreloadDriver(dpy); - if (!dpy->DriverName) { - free(dpy); - return NULL; - } } return dpy; } |