- 27 May, 2013 - 1 commit
-
-
Christiaan Janssen authored
Change-Id: I54c960f0b0da061816223a51795c83a9f9dd3f66 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 06 May, 2013 - 1 commit
-
-
Christiaan Janssen authored
Change-Id: Ide71b330b13fc3816ed191bd9af84e0fce0d9587 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 23 Apr, 2013 - 1 commit
-
-
Gunnar Sletta authored
Change-Id: Icd9bf8ec63e46341f5a43dbb85fe6a3a885f6afb Reviewed-by:
Morten Johan Sørvig <morten.sorvig@digia.com> Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 17 Apr, 2013 - 1 commit
-
-
Gunnar Sletta authored
Task-number: QTBUG-30663 Change-Id: I952bb4cd9c254f085304ceeddced14b66e0f12b6 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 04 Apr, 2013 - 2 commits
-
-
Gunnar Sletta authored
After much back and forth, I think we have settled on the right approach in QtGui, which is that resizeEvent is pretty much useless as the action happens on the following exposeEvent(). Change-Id: I5e87bda89853907d041f56acf9a2895e540c41f0 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
Gunnar Sletta authored
Change-Id: I4e88b479a8a9a5126312a05800e8170511b1f7ac Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 13 Mar, 2013 - 1 commit
-
-
Jędrzej Nowacki authored
The patch should make valgrind happy, by not using an uninitialized memory. Change-Id: Iec7f16c56f250dd121a37f03da4cfc5d9e5c0742 Reviewed-by:
Gunnar Sletta <gunnar.sletta@digia.com>
-
- 12 Mar, 2013 - 2 commits
-
-
Yoann Lopes authored
Change-Id: I32bb720e9c9aa0278959dd64e5e1c449bdace7d1 Reviewed-by:
Gunnar Sletta <gunnar.sletta@digia.com>
-
Gunnar Sletta authored
Change-Id: I710d80ebb4e5a12fda1f58f54089b0e72268dfcf Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 21 Feb, 2013 - 1 commit
-
-
Gunnar Sletta authored
We needs this on non-compositing window managers to trigger repaints on partial updates. Change-Id: Ied5f3e854173c5e00ad7e1222aeb66eb9c96158c Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 19 Feb, 2013 - 1 commit
-
-
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:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com> Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 07 Feb, 2013 - 1 commit
-
-
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:
Samuel Rødal <samuel.rodal@digia.com>
-
- 30 Jan, 2013 - 1 commit
-
-
Gunnar Sletta authored
The typical bottlenecks during rendering are usually compiling shader programs, uploading textures and preparing glyphs, so add profiling data around them. Change-Id: I9c330a0f6b769836d303a035b2c0dce832842aec Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 18 Jan, 2013 - 1 commit
-
-
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:
Samuel Rødal <samuel.rodal@digia.com>
-