diff options
author | 2023-11-08 22:48:56 +0000 | |
---|---|---|
committer | 2023-11-08 22:48:56 +0000 | |
commit | 74c7d271c4ef22aeafefa825b5c1bc2b8ecff72c (patch) | |
tree | e445da9cf14a46ca11702b047bfb37770196b3e3 /libs/hwui/Properties.cpp | |
parent | f7b76c6587686ecd1403359789d4363998e696b6 (diff) | |
parent | f9a31c729770e4693bfd968b46b1e0348223ca22 (diff) |
Merge "libhwui: Use Vulkan by default" into main am: 822a45e2e1 am: f9a31c7297
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2819917
Change-Id: I36a25f7171dfa981c6b15ee489a1ab666d7edb9d
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/hwui/Properties.cpp')
-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() { |