summaryrefslogtreecommitdiffstats
path: root/opengl/libs
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2014-04-08 15:05:54 -0700
committerJohn Reck <jreck@google.com>2014-04-08 15:05:54 -0700
commitdb4488565a791fc769b0b0b6ca4a0689eb3d5f4e (patch)
tree319ddef50e0b6a77d57601ba8a7c0e6efa6564ed /opengl/libs
parentfc9aeb859096cc02ec9241fad589d361cf9c3ddd (diff)
downloadframeworks_native-db4488565a791fc769b0b0b6ca4a0689eb3d5f4e.zip
frameworks_native-db4488565a791fc769b0b0b6ca4a0689eb3d5f4e.tar.gz
frameworks_native-db4488565a791fc769b0b0b6ca4a0689eb3d5f4e.tar.bz2
Temporarily turn on callstack logging
Bug: 13745587 Temporarily turn on callstack logging for gl_no_context() to try and track down font cache corruption Change-Id: I657ee85e811746441c5ce0ffe5adbfb3fb011d4c
Diffstat (limited to 'opengl/libs')
-rw-r--r--opengl/libs/EGL/egl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp
index 67fbae5..44b5560 100644
--- a/opengl/libs/EGL/egl.cpp
+++ b/opengl/libs/EGL/egl.cpp
@@ -222,7 +222,7 @@ static int gl_no_context() {
}
char value[PROPERTY_VALUE_MAX];
property_get("debug.egl.callstack", value, "0");
- if (atoi(value)) {
+ if (true || atoi(value)) {
CallStack stack(LOG_TAG);
}
}