diff options
author | Mathias Agopian <mathias@google.com> | 2009-04-24 18:16:44 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2009-04-24 18:16:44 -0700 |
commit | 799af8dd1dd7e01c9ded23bed30749e20f68c8e5 (patch) | |
tree | c52e2d5b8bdec4b8f353cd346fcc0ae3a2749287 /opengl | |
parent | 9e8ca9a19c8625b22f37c2f8c0ac841d1f10d25a (diff) | |
download | frameworks_base-799af8dd1dd7e01c9ded23bed30749e20f68c8e5.zip frameworks_base-799af8dd1dd7e01c9ded23bed30749e20f68c8e5.tar.gz frameworks_base-799af8dd1dd7e01c9ded23bed30749e20f68c8e5.tar.bz2 |
oops forgot to remove a LOGD when loading an opengl driver
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/libs/EGL/egl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp index ff005e2..5ed3ecc 100644 --- a/opengl/libs/EGL/egl.cpp +++ b/opengl/libs/EGL/egl.cpp @@ -346,7 +346,7 @@ void *load_driver(const char* driver, gl_hooks_t* hooks) } } if (f == NULL) { - LOGD("%s", name); + //LOGD("%s", name); f = (__eglMustCastToProperFunctionPointerType)gl_unimplemented; } *curr++ = f; |