Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-28488

Animations are way too slow on BB10

    XMLWordPrintable

Details

    Description

      This issue probably has the same root cause as https://bugreports.qt-project.org/browse/QTBUG-28487. But maybe it's worth mentioning it separately.

      Animations on BB10 are way too slow. For example the following simple animation has a duration of 2 seconds. On a DevAlpha-A it runs constantly with 20 FPS and takes about 5 seconds to complete.

      To reproduce take the following example and time it with a stop watch or something similar

      import QtQuick 2.0
      
      Rectangle {
          width: 768
          height: 1280
          color: "gray"
      
          Rectangle {
              id: inner
              width: parent.width
              height: parent.height
              x: -width
              color: "green"
      
              NumberAnimation {
                  target: inner;
                  property: "x";
                  duration: 2000;
                  from: -width
                  to: 0;
                  running: true
                  loops: Animation.Infinite
              }
          }
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            martinj Martin Jones
            conny Cornelius Hald
            Votes:
            2 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes