• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

frameworks/base


Commit MetaInfo

Revisiondb2e9b1116978d8254f196b1443343dc70a9ad36 (tree)
Zeit2020-03-18 19:55:14
AutorChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Log Message

Work around GMS crashing issue on 32-bit image

Ändern Zusammenfassung

Diff

--- a/libs/hwui/debug/GlesErrorCheckWrapper.cpp
+++ b/libs/hwui/debug/GlesErrorCheckWrapper.cpp
@@ -50,7 +50,7 @@ void GlesErrorCheckWrapper::assertNoErrors(const char* apicall) {
5050 lastErrorName = "UNKNOWN";
5151 }
5252 }
53- LOG_ALWAYS_FATAL_IF(lastError != GL_NO_ERROR,
53+ ALOGE_IF(lastError != GL_NO_ERROR,
5454 "%s error! %s (0x%x)", apicall, lastErrorName, lastError);
5555 }
5656