Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7818322b authored by Dmitry Shmidt's avatar Dmitry Shmidt Committed by android-build-merger
Browse files

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

am: c1ad3c5f

Change-Id: I81a582d7ad20f062803963a3dc43ddcec288c8ec
parents 8b325a06 c1ad3c5f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
        }
    }
}