米尔MYC-YT507开发板测评:性能测试之二Qt性能测试
[复制链接]
前言
一般对于图形界面程序会关心刷新率,比如Qt程序。
这里通过一个简单的Qt程序测试Qt的性能,通过尽可能快速的绘制不同控件,测试相应时间来测试性能。
代码
WSL中
下载代码
git clone
运行qtcreator
/home/lhj/qtcreator-5.0.0-rc1/bin/qtcreator.sh &
File->Open File or Project...
.pro文件中添加QT += widgets
修改#include <QtGui/QApplication> 为 #include <QApplication>
Build->Build Project “qtperf4”
提示错误
手动修改/build-qtperf4-YT507H_dev_kit-Debug/Makefile如上红色框中的内容为/home/lhj/MYD-YT507H/gcc-linaro-7.4.1-2019.02-x86_64_aarch64-linux-gnu/Qt_5.12.5/aarch64-buildroot-linux-gnu/sysroot/usr/lib/libGLESv2.so
重新编译
将程序拷贝到windows下
cd ../ build-qtperf4-YT507H_dev_kit-Debug/export
cp qtperf4 /mnt/e
导入到开发板
运行
chmod +x qtperf4
LD_LIBRARY_PATH=/usr/local/Qt_5.12.5/lib/:$LD_LIBRARY_PATH
export QT_QPA_EGLFS_INTEGRATION=none
./qtperf4
测试10次的结果如下
比如54mS操作了10次QPushButton
整体而言性能是不错的。
|