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

Commit 2d7af74c authored by Cody Northrop's avatar Cody Northrop
Browse files

GraphicsEnv - remove deprecated error

Now that we check a whitelist for ANGLE, it is no
longer an error to not have an app name when
initializing the driver.

Bug: 80239516
Test: atest CtsAngleIntegrationHostTestCases
Change-Id: I86c7e29d25b747a3494d4b1d65c949e21ddc6c2c
parent 57ba2f19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ bool GraphicsEnv::shouldUseAngle(std::string appName) {
bool GraphicsEnv::shouldUseAngle() {
    // Make sure we are init'ed
    if (mAngleAppName.empty()) {
        ALOGE("App name is empty. setAngleInfo() must be called first to enable ANGLE.");
        ALOGV("App name is empty. setAngleInfo() has not been called to enable ANGLE.");
        return false;
    }