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

Commit 38480bd2 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 25787529 74883abd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -239,9 +239,9 @@ void EglManager::loadConfigs() {
        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;
        }
    }
}