OSDN Git Service

gltrace: Make sure device is debuggable.
authorSiva Velusamy <vsiva@google.com>
Tue, 20 Nov 2012 21:39:57 +0000 (13:39 -0800)
committerSiva Velusamy <vsiva@google.com>
Tue, 20 Nov 2012 21:39:57 +0000 (13:39 -0800)
Change-Id: Icc22ff823a2f56733b232b927dd1fa494e9e1e81

opengl/libs/EGL/egl.cpp

index 9e303cf..d46f83b 100644 (file)
@@ -124,6 +124,12 @@ void initEglTraceLevel() {
 void initEglDebugLevel() {
     int propertyLevel = 0;
     char value[PROPERTY_VALUE_MAX];
+
+    // check system property only on userdebug or eng builds
+    property_get("ro.debuggable", value, "0");
+    if (value[0] == '0')
+        return;
+
     property_get("debug.egl.debug_proc", value, "");
     if (strlen(value) > 0) {
         long pid = getpid();