- 28 Nov, 2016 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: I0bec2dbcee58da91970c845c22b611018720aa52
-
- 06 Nov, 2016 - 1 commit
-
-
Oswald Buddenhagen authored
the CI obtains them from the qt5 super repo nowadays. Change-Id: If4ad33246234c8d579e6c4f8c3acd9e5981de0ec Reviewed-by:
Sean Harmer <sean.harmer@kdab.com> Reviewed-by:
Jędrzej Nowacki <jedrzej.nowacki@qt.io>
-
- 24 Oct, 2016 - 2 commits
-
-
Marc Mutz authored
The old code used indices to detect when it fell off the end of m_chunks and needed to allocate a new chunk, but this was opaque to Coverity, which saw the potential for m_lastAllocatedChunk == nullptr at the end of the function, and thus reported a nullptr deref there. Fix by moving the scanning of m_chunks into a new method, scan(), which more clearly communicates that it never returns nullptr, not least because it returns by reference instead of pointer. Coverity-Id: 154279 Change-Id: I0cfe8fd819bbfc5b03a98b5e9354c0e98a521d34 Reviewed-by:
Paul Lemire <paul.lemire@kdab.com>
-
Marc Mutz authored
The check of d->m_renderer against nullptr follows an unconditional deref of the same pointer with no intervening code. It must therefore be always true. Remove it. That done, m_renderer _is_ nullptr after the ctor ran, and before the dtor runs (there's a check), so maybe the code should at least assert the existence of m_renderer before using it. Coverity-Id: 156307 Change-Id: Iacf2c09db1c0a5a55a67cfb6ef2a00652e557d09 Reviewed-by:
Paul Lemire <paul.lemire@kdab.com>
-
- 19 Oct, 2016 - 1 commit
-
-
Milla Pohjanheimo authored
The test is failing in 5.6 also. Same as e8a69119 Task-number: QTBUG-53915 Change-Id: I8075c65abc96536c3fafad912c07b73aa6e0b2d7 Reviewed-by:
Antti Määttä <antti.maatta@qt.io> Reviewed-by:
Paul Lemire <paul.lemire@kdab.com>
-
- 05 Oct, 2016 - 1 commit
-
-
Marc Mutz authored
We checked that the file exists prior to opening it, but it could still be unreadable (due to permissions, e.g.), so check with QFile::open() and emit QFile::errorString() in case it goes wrong. Coverity-Id: 161328 Change-Id: I3489488023bb697d6cb9eee6be07c0edd923c478 Reviewed-by:
Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
-
- 04 Oct, 2016 - 1 commit
-
-
Oswald Buddenhagen authored
all .prf files that need the variables it sets actually load it by themselves. This reverts commit 3ec11e4d . Change-Id: Ia662f252b8215f83e090391748947a8579566885 Reviewed-by:
Laszlo Agocs <laszlo.agocs@qt.io> Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 12 Aug, 2016 - 1 commit
-
-
Topi Reinio authored
As of version 10.12 (Sierra), the name of Apple's desktop operating system will be macOS. Change all occurrences where the Mac platform is discussed to use the macro \macos (defined in the documentation configuration in qtbase). Change-Id: I0a7da987b0322b622a34f6735210bfdf708479ab Reviewed-by:
Paul Lemire <paul.lemire@kdab.com> Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 20 Jun, 2016 - 2 commits
-
-
Dmitry Shachnev authored
Change-Id: I98a31d165367e725c902df368c9c2824439a47d6 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com> Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Dmitry Shachnev authored
QHandle uses an union internally so the value of handle is composed of values of three other integer fields, as defined in Data structure. The value is different on big endian and little endian systems. This commit introduces a new GET_EXPECTED_HANDLE macro which determines what the handle should be equal to based on values of those integer fields and the system endianness. Note that the values of those fields are verified too in the tests. Change-Id: I1f1e37a7469995879ff94e8fc2d6b974c1d4359b Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com> Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 19 Jun, 2016 - 1 commit
-
-
Sze Howe Koh authored
See http://comments.gmane.org/gmane.comp.lib.qt.devel/25771 Change-Id: I233e76eaa660e95099fdec23583984e544a80ac8 Reviewed-by:
Lars Knoll <lars.knoll@qt.io>
-
- 07 Jun, 2016 - 1 commit
-
-
Paul Lemire authored
When using Scene3D, there are no MouseMove events. Instead there are HoverMove events being generated. For that reason we intercept these to allow the MouseHandlers to receive positionChanged events when used with Scene3D Change-Id: I638a86a1b574e3f99163e0b1b13cb47c83acdc1e Reviewed-by:
Sean Harmer <sean.harmer@kdab.com> (cherry picked from commit dd271001 ) Reviewed-by:
Paul Lemire <paul.lemire@kdab.com>
-
- 19 May, 2016 - 2 commits
-
-
Liang Qi authored
Change-Id: I4d597a4948d28855395df5aff179c2f77a060bd5
-
Oswald Buddenhagen authored
Change-Id: Ia76d564ef3c8bb2153bbfb27edbbd4490242206f
-
- 17 May, 2016 - 1 commit
-
-
Fredrik Orderud authored
Backport of 9927e580 from 5.7 branch. Might be related to QTBUG-50704. The custom operators also need improving so that we can use QSharedPointer::create() with them. Once the change refactorings are complete we can look at re-adding the use of the allocator to all change types not just QNodePropertyChange. Task-number: QTBUG-50704 Task-number: QTBUG-51494 Change-Id: Ifd357fecf0e5f58b7198ff526a9dcf9f43e20fa5 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 13 May, 2016 - 1 commit
-
-
Topi Reinio authored
Examples in binary packages now directly match the install path. Change-Id: I477b72161e1f743a4e0925dacb38a05a3dd93946 Task-number: QTBUG-52953 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
-
- 10 May, 2016 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: I7106026af6096871368a9e05df94c907e39cdde1 Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io>
-
- 08 May, 2016 - 1 commit
-
-
Thiago Macieira authored
qresourcemanager_p.h:177:20: warning: destination for this 'memset' call is a pointer to dynamic class 'Buffer'; vtable pointer will be overwritten [-Wdynamic-class-memaccess] Change-Id: Id75834dab9ed466e94c7ffff144489ec85f57f00 Reviewed-by:
Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
-
- 04 May, 2016 - 1 commit
-
-
Wieland Hagen authored
Buffer data upload from QML would not copy the buffer data from the JS buffer class, but just store a pointer to it. JS Garbage collection may free that memory while it is still used by QBuffer Task-number: QTBUG-51667 Change-Id: I366e4e8ad601f058ae022ec4b4978e18eed0e395 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 28 Apr, 2016 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: Ib5819aa0f90bbb418fce29ff91a29969fd69c682 Reviewed-by:
Paul Lemire <paul.lemire@kdab.com>
-
- 19 Apr, 2016 - 2 commits
-
-
Sean Harmer authored
Allows to build with mingw. Task-number: QTBUG-52619 Change-Id: Ie5b3fc4a5d4ad13cdd93575b4dac9b466f475bbf Reviewed-by:
BogDan Vatra <bogdan@kdab.com>
-
Janne Koskinen authored
Needed by GCC 4.4.x to compile. Task-number: QTBUG-51879 Change-Id: I36c91a8a164a50a7f222e05d6722a2d29cbb983f Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 12 Apr, 2016 - 3 commits
-
-
Thiago Macieira authored
std::tuple<> apparently has a trivial constructor, so it really is uninitialized. Change-Id: Id75834dab9ed466e94c7ffff1444801e4bf0d7dc Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Thiago Macieira authored
You can't assign -1 to an unsigned and expect it to retain the sign. Assimp has a lot of those and should be fixed (it's not portable to assume -1 becomes ~0). But since this is a third-party library, it's not worth my time to submit a patch. Change-Id: Id75834dab9ed466e94c7ffff14448010fe7e0c90 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Thiago Macieira authored
Change-Id: Id75834dab9ed466e94c7ffff14447ec2379c5b17 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 08 Apr, 2016 - 1 commit
-
-
Venugopal Shivashankar authored
Task-number: QTBUG-52396 Change-Id: I1e063e68e6102bb22c21ddb7006e08093f592b36 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 30 Mar, 2016 - 1 commit
-
-
Rafael Roquetto authored
And remove Q_OS_BLACKBERRY, it no longer exists. Change-Id: Iad6d2faa5d9a3c13850d5699cc43caf197781473 Reviewed-by:
Volker Krause <volker.krause@kdab.com> Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 22 Mar, 2016 - 2 commits
-
-
Edward Welbourne authored
Subjects each *.png file that matched grep -law "sRGB" to: pngcrush -ow -brute -rem allb -reduce -force Change-Id: I45f0404fedf58c3ec3380ba9adc26b1883007299 Reviewed-by:
Topi Reiniö <topi.reinio@theqtcompany.com>
-
Edward Welbourne authored
Subjects each *.png file that matched grep -law "sRGB" to: pngcrush -ow -brute -rem allb -reduce Change-Id: I78ae38f83ec7e5ad8da41de4eefc12d1df6ebfc0 Reviewed-by:
Topi Reiniö <topi.reinio@theqtcompany.com>
-
- 21 Mar, 2016 - 2 commits
-
-
Marc Mutz authored
It is used in libQt3DRender.so. Fixes UBSan build, which requires access to the typeinfo object, even though only inline methods and data members are accessed. Change-Id: I96a5bf5887c30feb55e044bca02be86c76e124cf Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Liang Qi authored
Conflicts: tools/qgltf/qgltf.cpp Change-Id: I60ffe68e1e3419b3e329409dd774bab5ead6e8ae
-
- 17 Mar, 2016 - 1 commit
-
-
BogDan Vatra authored
Change-Id: Iba7c70d47460777f6a503c34736bce9a7e6b300b Reviewed-by:
Andy Nichols <andy.nichols@theqtcompany.com>
-
- 03 Mar, 2016 - 2 commits
-
-
Thiago Macieira authored
trianglesextractor.cpp:73:28: error: ‘Qt3DRender::QAttribute::DataType’ is not a class or namespace Change-Id: Ic747cc2ab45e4dc6bb70ffff14384407a2997a70 Reviewed-by:
Lars Knoll <lars.knoll@theqtcompany.com>
-
Thiago Macieira authored
qgltf.cpp:1990:38: error: template argument for ‘template<class Key, class T> class QHash’ uses local type ‘GltfExporter::exportTechniques(QJsonObject&, const QString&)::ProgramNames’ Change-Id: Ic747cc2ab45e4dc6bb70ffff143844dc7120e571 Reviewed-by:
Lars Knoll <lars.knoll@theqtcompany.com>
-
- 01 Mar, 2016 - 1 commit
-
-
Marc Mutz authored
... or equivalent. Task-number: QTBUG-45291 Change-Id: I1453477ad718335ca6c5c0c3447539cb93e21176 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
- 25 Feb, 2016 - 5 commits
-
-
Oswald Buddenhagen authored
Change-Id: I0e9e180145dcedb5afb8a534b6ac2bfd773262f9 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Oswald Buddenhagen authored
remove excess ones and don't over-expose private ones. Change-Id: Ie0a39117de0f6f25ea7231cb67c2cd8d723c04e3 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Oswald Buddenhagen authored
Change-Id: Ia5af91fdbcb44addef1501b75eb927a19107b82a Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Oswald Buddenhagen authored
Change-Id: Ib4667e1d11309e76f60150eb4e474dbc1b4191ce Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-
Oswald Buddenhagen authored
this fixes static builds by ensuring that all dependencies are exported. Task-number: QTBUG-51071 Change-Id: Ied46fc47e5f998053ab8a31547e09676144a65c1 Reviewed-by:
Sean Harmer <sean.harmer@kdab.com>
-