diff options
author | Chia-I Wu <[email protected]> | 2009-09-28 17:25:48 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-13 12:00:36 -0600 |
commit | 5541988578054345ca70b7ed7972710396e61b44 (patch) | |
tree | 719d43f257ccfa92af9c979c0cdd4431242163f9 /src/egl/main/egllog.c | |
parent | 1cc1c3a0336d74e518417e2e93e141171a50542b (diff) |
egl: Add support for driver built-in.
This allows an EGL driver to be compiled together with libEGL.so. It
eliminates the need to specify a driver, or support module loading on
new platforms.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/egl/main/egllog.c')
-rw-r--r-- | src/egl/main/egllog.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/egl/main/egllog.c b/src/egl/main/egllog.c index 1d7a0a388c6..23eb523eebe 100644 --- a/src/egl/main/egllog.c +++ b/src/egl/main/egllog.c @@ -21,11 +21,7 @@ static EGLint ReportingLevel = -1; static void log_level_initialize(void) { -#if defined(_EGL_PLATFORM_X) char *log_env = getenv("EGL_LOG_LEVEL"); -#else - char *log_env = NULL; -#endif if (log_env == NULL) { ReportingLevel = FALLBACK_LOG_LEVEL; |