1. 27 May, 2013 - 1 commit
  2. 06 May, 2013 - 1 commit
  3. 23 Apr, 2013 - 1 commit
  4. 17 Apr, 2013 - 1 commit
  5. 04 Apr, 2013 - 2 commits
  6. 13 Mar, 2013 - 1 commit
  7. 12 Mar, 2013 - 2 commits
  8. 21 Feb, 2013 - 1 commit
  9. 19 Feb, 2013 - 1 commit
    • Gunnar Sletta's avatar
      Improved animations in the new render loop · aef7dad9
      Gunnar Sletta authored
      
      To advance animations in line with vsync, we used a dedicated event
      from the rendering thread which we fired immediately after sync. This
      is a bit elaborate as we know in Gui when sync is complete and we can
      just animate there and then.
      
      This means we can remove all animation logic from the rendering
      thread, making it simpler.
      
      I also updated the syncAndRender pass so that it does not render
      anything if the scene graph reported no changes during the
      sync pass. This will prevent non-visual animations and property
      updates from triggering render passes which will save quite a
      few cycles.
      
      Change-Id: I62bb5484f0673f99abe726fca5a9b424f6b0a317
      Reviewed-by: default avatarEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
      Reviewed-by: default avatarSamuel Rødal <samuel.rodal@digia.com>
      aef7dad9
  10. 07 Feb, 2013 - 1 commit
    • Gunnar Sletta's avatar
      Make sure deleteLater gets run at the "correct" time. · 4f8537ff
      Gunnar Sletta authored
      
      We have a number of places where we delete scene graph objects with
      deleteLater() and change the scene graph. The timing of when the
      deleteLater happens is very important as we need to complete
      the updates to the scene graph first.
      
      In this particular case, a QQuickShaderEffectSource was released,
      and an update was scheduled but because animations were running we
      were already beginning to render a new frame before the update was
      handled, causing a crash.
      
      The only safe place to run deferred deletes is after we have
      performed a proper sync with the item scene.
      
      Task-number: QTBUG-29485
      Change-Id: I6e93d4e6276fe82d3f4c818781b188e03c46e510
      Reviewed-by: default avatarSamuel Rødal <samuel.rodal@digia.com>
      4f8537ff
  11. 30 Jan, 2013 - 1 commit
  12. 18 Jan, 2013 - 1 commit
    • Gunnar Sletta's avatar
      Complete rewrite of threaded render loop. · ebe8b940
      Gunnar Sletta authored
      
      This change starts using the superior implementation of the scene graph
      render loop which has been worked on in the scenegraph-playground
      project for a while. It uses a far more straightforward locking/sync
      paradigm compared to the existing one and is less deadlock and error
      prone. It also enables the scene graph thread to run on its own when
      the GUI thread is blocked, enabling threaded animations.
      
      This changes also introduces a naming change inside Qt Quick from
      "Window Manager" -> "Render Loop" as that fits better to what the
      code does.
      
      Change-Id: I1c2170ee04fcbef79660bd7dae6cace647cdb276
      Reviewed-by: default avatarSamuel Rødal <samuel.rodal@digia.com>
      ebe8b940