OSDN Git Service

Work around GMS crashing issue on 32-bit image android-x86-8.1-r4
authorChih-Wei Huang <cwhuang@linux.org.tw>
Wed, 18 Mar 2020 10:55:14 +0000 (18:55 +0800)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Wed, 18 Mar 2020 10:55:14 +0000 (18:55 +0800)
libs/hwui/debug/GlesErrorCheckWrapper.cpp

index 7ededaa..349b7cd 100644 (file)
@@ -50,7 +50,7 @@ void GlesErrorCheckWrapper::assertNoErrors(const char* apicall) {
             lastErrorName = "UNKNOWN";
         }
     }
-    LOG_ALWAYS_FATAL_IF(lastError != GL_NO_ERROR,
+    ALOGE_IF(lastError != GL_NO_ERROR,
             "%s error! %s (0x%x)", apicall, lastErrorName, lastError);
 }