From db4488565a791fc769b0b0b6ca4a0689eb3d5f4e Mon Sep 17 00:00:00 2001 From: John Reck Date: Tue, 8 Apr 2014 15:05:54 -0700 Subject: [PATCH] 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 --- opengl/libs/EGL/egl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp index 67fbae5dd..44b556024 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); } }