diff options
author | Jun Wang <quic_junwan@quicinc.com> | 2022-03-19 11:06:31 -0300 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-05 22:04:15 +0530 |
commit | d08b8b74c884eff212bb91594bbebe64f8f4dabd (patch) | |
tree | 9ecc963b5898385d04a8d364270ca2fcb13d65f1 | |
parent | 93cbb489dec576d24ec8d87369fea63afa2e89fa (diff) |
veux: props: Disable Skia tracing by default
If the prop debug.hwui.skia_atrace_enabled is enabled, too many
skia tracing calls will be printed in every frame. This has obvious
overhead on performance/power, and can cause many janks. So disable
it by default, and user can set it manually if necessary.
Change-Id: I5d470b22a643634bdd7db9f307c29deae6ff176f
-rw-r--r-- | system.prop | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system.prop b/system.prop index c2bcd6d..1bc9e60 100644 --- a/system.prop +++ b/system.prop @@ -7,6 +7,9 @@ ro.charger.enable_suspend=true # CNE persist.vendor.cne.feature=1 +# Disable Skia tracing by default +debug.hwui.skia_atrace_enabled=false + # Graphics debug.sf.disable_backpressure=1 debug.sf.enable_hwc_vds=1 |