diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2010-05-13 08:59:47 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2010-05-13 08:59:56 -0400 |
commit | 021a68b7e83259faedacea8b3a18e754bed6277a (patch) | |
tree | 0e42691bf03e83801a12238a2e38cedc3db8061a | |
parent | 41797e16599304e9e300e60c54f7d9457ff2b848 (diff) |
egl: Drop broken _EGL_PLATFORM_NO_OS code
It would do strlen(library_suffix()) in _eglLoaderFile(), with
library_suffix() returning NULL. So obviuosly not used or tested.
-rw-r--r-- | src/egl/main/egldriver.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 28649563a4..2913ce2ece 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -87,32 +87,6 @@ library_suffix(void) } -#else /* _EGL_PLATFORM_NO_OS */ - - -static const char DefaultDriverName[] = "builtin"; - -typedef void *lib_handle; - -static INLINE void * -open_library(const char *filename) -{ - return (void *) filename; -} - -static INLINE void -close_library(void *lib) -{ -} - - -static const char * -library_suffix(void) -{ - return NULL; -} - - #endif @@ -157,12 +131,6 @@ _eglOpenLibrary(const char *driverPath, lib_handle *handle) else { error = dlerror(); } -#else /* _EGL_PLATFORM_NO_OS */ - /* must be the default driver name */ - if (strcmp(driverPath, DefaultDriverName) == 0) - mainFunc = (_EGLMain_t) _eglMain; - else - error = "not builtin driver"; #endif if (!lib) { |