diff options
| author | 2023-11-08 21:50:03 +0000 | |
|---|---|---|
| committer | 2023-11-08 21:50:03 +0000 | |
| commit | 0397776c11ef22faf9f13d23a5f3535f04b999a3 (patch) | |
| tree | 2185050cfa204ac8ec97adbafb8373292ede3cb7 /libs | |
| parent | 49733ac0937dcb3f45afe12c189131aa6e86bab2 (diff) | |
| parent | 822a45e2e10471c7248deda9cbb52e945436a501 (diff) | |
Merge "libhwui: Use Vulkan by default" into main am: 822a45e2e1
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2819917
Change-Id: Ie56db877c026770bf8d71d81b0f46f67a94a97f9
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/hwui/Properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index 06aed63d8def..09d3f05935b9 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -35,7 +35,7 @@ namespace uirenderer { #ifndef __ANDROID__ // Layoutlib does not compile HWUIProperties.sysprop as it depends on cutils properties std::optional<bool> use_vulkan() { - return base::GetBoolProperty("ro.hwui.use_vulkan", false); + return base::GetBoolProperty("ro.hwui.use_vulkan", true); } std::optional<std::int32_t> render_ahead() { |