summaryrefslogtreecommitdiff
path: root/src/egl/main/egllog.c
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-28 17:25:48 +0800
committerBrian Paul <brianp@vmware.com>2009-10-13 12:00:36 -0600
commit5541988578054345ca70b7ed7972710396e61b44 (patch)
tree719d43f257ccfa92af9c979c0cdd4431242163f9 /src/egl/main/egllog.c
parent1cc1c3a0336d74e518417e2e93e141171a50542b (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 <olvaffe@gmail.com>
Diffstat (limited to 'src/egl/main/egllog.c')
-rw-r--r--src/egl/main/egllog.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/egl/main/egllog.c b/src/egl/main/egllog.c
index 1d7a0a388c..23eb523eeb 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;