diff options
author | 2023-11-08 21:06:21 +0000 | |
---|---|---|
committer | 2023-11-08 21:06:21 +0000 | |
commit | 822a45e2e10471c7248deda9cbb52e945436a501 (patch) | |
tree | 525499b22041471127b4052fe821d1ff634f2b17 /libs | |
parent | 8262df761e255699ccdabb97b8ef5960f743ff2b (diff) | |
parent | 511cca95282355a498f59d248b42104453fe82ea (diff) |
Merge "libhwui: Use Vulkan by default" into main
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() { |