From 2287f4c52ab10a6d65d7bb12803a8ee0f2394699 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Tue, 2 Feb 2010 17:05:56 +0800 Subject: egl: Remove unnecessary #ifdef's. There were some refactorings with the addition of EGL_DRIVERS_PATH. They made some platform #ifdef's unnecessary. --- src/egl/main/egldriver.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/egl/main/egldriver.c') diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 0ccdea76c9..8e623a071e 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -448,7 +448,6 @@ _eglGetSearchPath(void) static EGLBoolean _eglPreloadUserDriver(void) { -#if defined(_EGL_PLATFORM_POSIX) || defined(_EGL_PLATFORM_WINDOWS) const char *search_path = _eglGetSearchPath(); char *env; @@ -472,9 +471,6 @@ _eglPreloadUserDriver(void) } return EGL_TRUE; -#else /* _EGL_PLATFORM_POSIX || _EGL_PLATFORM_WINDOWS */ - return EGL_FALSE; -#endif } @@ -490,7 +486,6 @@ _eglPreloadUserDriver(void) static EGLBoolean _eglPreloadDisplayDrivers(void) { -#if defined(_EGL_PLATFORM_POSIX) const char *dpy; char prefix[32]; int ret; @@ -507,9 +502,6 @@ _eglPreloadDisplayDrivers(void) return (_eglPreloadForEach(_eglGetSearchPath(), _eglPreloadPattern, (void *) prefix) > 0); -#else /* _EGL_PLATFORM_POSIX */ - return EGL_FALSE; -#endif } -- cgit v1.2.3