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

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

Merge "Query to SystemProperties for BLAST Flag"

parents a73ae8bb 21bb5918
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1169,9 +1169,10 @@ public class WindowManagerService extends IWindowManager.Stub
        mAnimator = new WindowAnimator(this);
        mRoot = new RootWindowContainer(this);

        mUseBLAST = DeviceConfig.getBoolean(
        mUseBLAST = SystemProperties.getBoolean(
                    String.join(".", "persist.device_config",
                    DeviceConfig.NAMESPACE_WINDOW_MANAGER_NATIVE_BOOT,
                    WM_USE_BLAST_ADAPTER_FLAG, false);
                    WM_USE_BLAST_ADAPTER_FLAG), false);

        mWindowPlacerLocked = new WindowSurfacePlacer(this);
        mTaskSnapshotController = new TaskSnapshotController(this);