Module: Mesa Branch: 7.8-gles Commit: 0c3f95e5e862c0d9a025d4886eccdf251991a522 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0c3f95e5e862c0d9a025d4886eccdf251991a522
Author: Kristian Høgsberg <[email protected]> Date: Thu May 13 08:59:47 2010 -0400 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. --- 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 0c69334..57b73ed 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) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
