我正在尝试自动化我在使用脚本定期开发时所做的一些任务。其中之一是打开和关闭 GPU 配置文件渲染。但是,我找不到 adb 命令来显示/隐藏它。
问问题
2223 次
1 回答
6
Developer Options中的Profile GPU Rendering复选框控制系统属性的值:debug.hwui.profile
/**
* System property used to enable or disable hardware rendering profiling.
* The default value of this property is assumed to be false.
*
* When profiling is enabled, the adb shell dumpsys gfxinfo command will
* output extra information about the time taken to execute by the last
* frames.
*
* Possible values:
* "true", to enable profiling
* "visual_bars", to enable profiling and visualize the results on screen
* "false", to disable profiling
*
* @see #PROFILE_PROPERTY_VISUALIZE_BARS
*
* @hide
*/
public static final String PROFILE_PROPERTY = "debug.hwui.profile";
因此,您可以使用setprop debug.hwui.profile visual_bars
命令来启用分析和setprop debug.hwui.profile false
禁用它。
于 2017-02-27T17:46:37.900 回答