Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.4.0, 5.4.1
-
Windows 7/8/8.1
-
d3b0bd40ec2a2741e35e19250205af2d632a0a52
Description
import QtQuick 2.3 Item { Timer { property var lastTime interval: 1000 running: true repeat: true onTriggered: { if (lastTime) { console.log(Date.now() - lastTime); } lastTime = Date.now(); } } SequentialAnimation on z { loops: Animation.Infinite NumberAnimation { from: 0; to: 1; duration: 1000 } } }
Output:
qml: 340 qml: 333 qml: 333 qml: 334
Attachments
Issue Links
- relates to
-
QTBUG-43296 Threaded render loop and vsync animation driver results in inaccurate animation timing
- Reported