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

Commit 50666fa2 authored by Dmitry Shmidt's avatar Dmitry Shmidt Committed by Gerrit Code Review
Browse files

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

parents 125d736b 4ee4d209
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;
        }
    }
}