在PC机上用QT实现了一个小动画,类似
用一个QGraphicsPixmapItem在QGraphicsView移动的功能
QTimeLine *timeline = new QTimeLine(3000);
QGraphicsItemAnimation *animation = new QGraphicsItemAnimation;
animation->setItem(item);
animation->setTimeLine(timeline);
item->show();
timeline->start();
在PC机上很流畅,但在mini6410上跑很卡
这个问题如何解决?
是不是6410的硬件功能没有用上?如何才能用上?