Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
None
-
5.0.0 RC 1
-
Qt 5.0 RC1 on BB10 DevAlpha-A with Beta-4
Description
No matter what I do I cannot get over 30 FPS with QtQuick 2.0 on BB10. The result is, that animations, scrolling, etc. look choppy and/or laggy.
To see the FPS you can enable the red system overlay on the BB10 DevAlpha.
Here is a small test case to demonstrate the issue:
import QtQuick 2.0 Rectangle { width: 450 height: 800 color: "gray" Rectangle { height: 600 width: 600 color: "lightblue" opacity: 0.5 anchors.centerIn: parent RotationAnimation on rotation { id: anim from: 0 to: 360 duration: 5000 loops: Animation.Infinite } } Text { text: "Click to accelerate" font.pixelSize: 40 color: "black" anchors.centerIn: parent } MouseArea { anchors.fill: parent onClicked: { if (anim.duration > 500) { anim.duration -= anim.duration > 1000 ? 1000 : 500 anim.restart() } } } }