Merge "renderthread: relax error handling for wide gamut EGL configs" am: 50666fa217

am: c1ad3c5f29

Change-Id: I81a582d7ad20f062803963a3dc43ddcec288c8ec
This commit is contained in:
Dmitry Shmidt
2017-12-13 18:16:43 +00:00
committed by android-build-merger

View File

@@ -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;
}
}
}