diff options
| author | 2020-03-17 14:28:07 -0700 | |
|---|---|---|
| committer | 2020-03-17 14:28:07 -0700 | |
| commit | e9eb96b098f7cfa04b333ea42db61e2d4619cbdb (patch) | |
| tree | 0fca35a5f757f2d976bc1bacd2b3bcd0677137bb | |
| parent | 1667d235ea0251acd6d86f1f488ee6fe000ba740 (diff) | |
Flip BLAST on master
Bug: 151758678
Test: build, boot
Change-Id: Ib11ec73e936502750eb14fb5b517bee4eebb5ed2
| -rw-r--r-- | services/core/java/com/android/server/wm/WindowManagerService.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/services/core/java/com/android/server/wm/WindowManagerService.java b/services/core/java/com/android/server/wm/WindowManagerService.java index 3f4f629b5292..5958f738f787 100644 --- a/services/core/java/com/android/server/wm/WindowManagerService.java +++ b/services/core/java/com/android/server/wm/WindowManagerService.java @@ -186,7 +186,6 @@ import android.os.SystemService; import android.os.Trace; import android.os.UserHandle; import android.os.WorkSource; -import android.provider.DeviceConfig; import android.provider.Settings; import android.service.vr.IVrManager; import android.service.vr.IVrStateCallbacks; @@ -1166,9 +1165,7 @@ public class WindowManagerService extends IWindowManager.Stub mAnimator = new WindowAnimator(this); mRoot = new RootWindowContainer(this); - mUseBLAST = DeviceConfig.getBoolean( - DeviceConfig.NAMESPACE_WINDOW_MANAGER_NATIVE_BOOT, - WM_USE_BLAST_ADAPTER_FLAG, false); + mUseBLAST = true; mWindowPlacerLocked = new WindowSurfacePlacer(this); mTaskSnapshotController = new TaskSnapshotController(this); |