diff options
| author | 2017-12-13 18:16:43 +0000 | |
|---|---|---|
| committer | 2017-12-13 18:16:43 +0000 | |
| commit | 7818322b62658e669ea2a47d2563d6a3cec2074e (patch) | |
| tree | 2164a2f2949d154793aa6133c8ba62ae21be2f23 /libs/hwui | |
| parent | 8b325a065406905ef74a6babf062325826b95793 (diff) | |
| parent | c1ad3c5f2966e8f0911e5fc3559229078bfd2266 (diff) | |
Merge "renderthread: relax error handling for wide gamut EGL configs" am: 50666fa217
am: c1ad3c5f29
Change-Id: I81a582d7ad20f062803963a3dc43ddcec288c8ec
Diffstat (limited to 'libs/hwui')
| -rw-r--r-- | libs/hwui/renderthread/EglManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/renderthread/EglManager.cpp b/libs/hwui/renderthread/EglManager.cpp index 16d77364942e..bd4708da562a 100644 --- a/libs/hwui/renderthread/EglManager.cpp +++ b/libs/hwui/renderthread/EglManager.cpp @@ -223,9 +223,9 @@ void EglManager::loadConfigs() { numConfigs = 1; if (!eglChooseConfig(mEglDisplay, attribs16F, &mEglConfigWideGamut, numConfigs, &numConfigs) || numConfigs != 1) { - LOG_ALWAYS_FATAL( - "Device claims wide gamut support, cannot find matching config, error = %s", + ALOGE("Device claims wide gamut support, cannot find matching config, error = %s", eglErrorString()); + EglExtensions.pixelFormatFloat = false; } } } |