1. 07 Sep, 2017 - 1 commit
  2. 15 Aug, 2017 - 1 commit
  3. 30 Jun, 2017 - 1 commit
  4. 23 Jun, 2017 - 1 commit
  5. 07 Jun, 2017 - 1 commit
  6. 31 May, 2017 - 1 commit
  7. 22 May, 2017 - 1 commit
  8. 10 May, 2017 - 2 commits
  9. 27 Apr, 2017 - 1 commit
  10. 29 Mar, 2017 - 1 commit
  11. 10 Mar, 2017 - 1 commit
  12. 02 Feb, 2017 - 1 commit
  13. 26 Jan, 2017 - 1 commit
  14. 24 Jan, 2017 - 1 commit
  15. 03 Jan, 2017 - 1 commit
  16. 02 Dec, 2016 - 1 commit
    • Friedemann Kleint's avatar
      Fix MSVC 64bit warnings about converting GLint to const GLvoid * · 69b9f0de
      Friedemann Kleint authored
      
      Cast via quintptr, fixing warnings:
      glstatestore.cpp(487): warning C4312: 'reinterpret_cast': conversion from 'GLint' to 'const GLvoid *' of greater size
      canvasrenderer.cpp(1166): warning C4312: 'reinterpret_cast': conversion from 'GLint' to 'GLvoid *' of greater size
      canvasrenderer.cpp(1473): warning C4312: 'reinterpret_cast': conversion from 'GLint' to 'const GLvoid *' of greater size
      
      Change-Id: I0085a5f09e137a28973a8e62afa0254fbe8f4bf3
      Reviewed-by: default avatarMiikka Heikkinen <miikka.heikkinen@qt.io>
      69b9f0de
  17. 01 Dec, 2016 - 1 commit
  18. 26 Nov, 2016 - 1 commit
  19. 08 Nov, 2016 - 1 commit
  20. 05 Nov, 2016 - 1 commit
  21. 24 Oct, 2016 - 1 commit
  22. 21 Sep, 2016 - 1 commit
  23. 18 Sep, 2016 - 1 commit
  24. 16 Sep, 2016 - 2 commits
  25. 13 Sep, 2016 - 1 commit
  26. 07 Sep, 2016 - 2 commits
    • Marc Mutz's avatar
      Eradicate Q_FOREACH loops and mark the module as Q_FOREACH-free · 179fdc13
      Marc Mutz authored
      
      In CanvasContext::setContextLostState(), ported from iterating
      over keys() to iterating over the container itself. This seems
      to be pretty safe, as it doesn't look like there's recursing
      into the CanvasContext happening.
      
      In CanvasGlCommandQueue::getCanvasId(), replaced a convoluted
      loop with QMap::key(value, default) (required implementing the
      equality relational operators for GlResource).
      
      In ~StaticFactoryMapDeleter(), replaced the Q_FOREACH with a
      call to qDeleteAll().
      
      Change-Id: I9b849cce6e8ff48b746c682895b00e0d5982bacb
      Reviewed-by: default avatarMiikka Heikkinen <miikka.heikkinen@qt.io>
      Reviewed-by: default avatarLars Knoll <lars.knoll@qt.io>
      179fdc13
    • Marc Mutz's avatar
      CanvasTextureImageFactory: fix quadratic loop in notifyLoadedImages() · 1502c59a
      Marc Mutz authored
      
      The old code uses a Java-style iterator on a QList, but
      failed to use the iterator's remove() function, opting
      instead to call QList::removeOne(). Both would have been
      quadratic, but the current code is even worse in that it
      re-scans the list for the element 'it' currently points
      at.
      
      Fix by using std::remove_if, which is linear, and, since
      it doesn't take a copy of the container, also avoids a
      deep copy of 'm_loadingImagesList' on actual removal (it
      will attempt to detach unconditional now, due to the use
      of non-const begin()/end(), but the variable is now no
      longer shared with anyone, so there will actually be no
      detach.
      
      Change-Id: I71cd08bd40994e86a6470fdd9bcd55c18913b8d8
      Reviewed-by: default avatarMiikka Heikkinen <miikka.heikkinen@qt.io>
      Reviewed-by: default avatarLars Knoll <lars.knoll@qt.io>
      1502c59a
  27. 06 Sep, 2016 - 1 commit
  28. 29 Aug, 2016 - 1 commit
  29. 22 Aug, 2016 - 1 commit
  30. 15 Aug, 2016 - 1 commit
  31. 02 Aug, 2016 - 2 commits
  32. 01 Aug, 2016 - 1 commit
  33. 28 Jul, 2016 - 1 commit
  34. 12 Jul, 2016 - 2 commits
  35. 30 Jun, 2016 - 1 commit