diff options
author | Huihong Luo <huisinro@google.com> | 2021-06-30 10:12:17 -0700 |
---|---|---|
committer | Huihong Luo <huisinro@google.com> | 2021-06-30 11:47:21 -0700 |
commit | eb93107b574ad3a8b567597af26e72bee276598b (patch) | |
tree | 63544ca2799b94522bff7ef302321c59c96733ee /libs/hwui/WebViewFunctorManager.cpp | |
parent | 920e1fd7a65f64ee0d8a58c6dc1343ff8c26bdfa (diff) |
Add a sys prop to control WebView Overlays support
The boolean system property is named as "debug.hwui.webview_overlays_enabled"
Bug: 192267127
Test: change the property value, check presence of Webview Surface
Control
Change-Id: I01e3e26282a5fa79aa504a6e49c5abe1a1c3ea02
Diffstat (limited to 'libs/hwui/WebViewFunctorManager.cpp')
-rw-r--r-- | libs/hwui/WebViewFunctorManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/WebViewFunctorManager.cpp b/libs/hwui/WebViewFunctorManager.cpp index 974c8635b3df..93f2f42a00fd 100644 --- a/libs/hwui/WebViewFunctorManager.cpp +++ b/libs/hwui/WebViewFunctorManager.cpp @@ -121,7 +121,7 @@ void WebViewFunctor::drawGl(const DrawGlInfo& drawInfo) { .mergeTransaction = currentFunctor.mergeTransaction, }; - if (!drawInfo.isLayer) { + if (Properties::enableWebViewOverlays && !drawInfo.isLayer) { renderthread::CanvasContext* activeContext = renderthread::CanvasContext::getActiveContext(); if (activeContext != nullptr) { |