summaryrefslogtreecommitdiffstats
path: root/src/plugins
Commit message (Collapse)AuthorAgeFilesLines
...
* QtQuick3d: Fix compiler warnings.Friedemann Kleint2011-12-012-2/+2
| | | | | | | | - Fix MSVC warnings about struct/class declaration mismatch - Fix gcc 4.6 warnings about assigned but unused variables. Change-Id: I6f0985919b7854be2b6faeedb1acbf9af194d018 Reviewed-by: Patrick Burke <patrick.burke@nokia.com>
* More fixes to QtQuick3D namespace compilation.Toby Tomkins2011-11-285-2/+22
| | | | | Change-Id: Ib648c9fbd613be1548c194fe6afd3d791c1ae368 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Remove legacy build system logic.Rohan McGovern2011-10-185-104/+21
| | | | | | | | In Qt4, qtquick3d had to reinvent a lot of Qt's own build system logic. In Qt5, modularization makes this unnecessary, so remove it. Change-Id: I683acba659c1a3842e927262cacd9377cdac7c35 Reviewed-by: Sarah Jane Smith <sarah.j.smith@nokia.com>
* Fixed cppcheck memory leak in tgafile reader.Patrick Burke2011-09-051-0/+2
| | | | | | | | | [./src/plugins/imageformats/tga/qtgafile.cpp:237]: (error) Memory leak: reader Change-Id: I43c2c6a13e28ea7e15adf6e5a26ce0d39cb27f19 Reviewed-on: http://codereview.qt.nokia.com/4163 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Julian de Bhal <julian.debhal@nokia.com>
* Replace outdated license headersJason McDonald2011-08-1937-667/+667
| | | | | | | | | | | Squash commit of master changes. Reviewed-on: http://codereview.qt.nokia.com/2612 Change-Id: I23b6fd648da34f84cd5704f7611b09f0c68d2840 Reviewed-on: http://codereview.qt.nokia.com/2617 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com> Reviewed-by: Sarah Jane Smith <sarah.j.smith@nokia.com> Reviewed-on: http://codereview.qt.nokia.com/3226
* Remove all Symbian code from the repo.Sarah Smith2011-07-204-17/+0
| | | | | | | | | | | | We continue with Symbian for the Qt4 program but since Qt5 support for symbian is not implemented and if it is will likely look very different, remove this code for now. Change-Id: Iced82075e37e3685f7247a7558c298adb54e10ef Reviewed-on: http://codereview.qt.nokia.com/1863 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Sarah Jane Smith <sarah.j.smith@nokia.com>
* Refactor packaging.Sarah Smith2011-07-065-11/+16
| | | | | | | | | | | | | | | | | | | | | | Packaging was always not so good. With the arrival of yet another packaging system to support, with QtSDK and Harmattan, it was overdue time to refactor the build system. Factored out all the places where Qt3D and QtQuick3D dependencies were exactly 3 levels below the source .pro file. This catches all of the examples and all of the demos, except for the ones in the tutorials directories. It is fine if those don't appear in packages, since their main value is in examining them in the IDE, rather than just having a package run them for you. It also catches both of the import plugins. Thus we save a huge amount of duplication of packaging information and can place the Qt SDK Harmattan packaging into a couple of variables in a new pkg.pri file. The two deps are now in a qt3d_pkg_dep.pri and qt3dquick_pkg_dep.pri file which include the pkg.pri. Change-Id: I28de17d7faa5ccf9157afad99471079c0b62ee87 Reviewed-on: http://codereview.qt.nokia.com/1191 Reviewed-by: Sarah Jane Smith
* Trade fprintf(stderr... for qWarningSarah Smith2011-07-053-8/+8
| | | | | | | | | | On windows the qWarning is magically visible in the Qt Creator output window but fprintf is not. Change-Id: If89ddac204b476abf2a1514d52771156ce3eea9a Reviewed-on: http://codereview.qt.nokia.com/1112 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Remove spurious scenegraph mention.Sarah Smith2011-05-121-1/+0
| | | | Change-Id: Ieda4f03a328d14cd2cd9efc30f8c92f26536807d
* Add symbian uids.Sarah Smith2011-05-114-8/+12
| | | | | | | | | | Also a few other random fixups, and removing of legacy stuff from early attempts at sybian integration. Note that the examples do not get a UID - apparently its not mandatory for the examples. Change-Id: I4af7dbe5ef2ec8acb4eea042428887fbf8f5bfe3
* Fixes for Quick3d to fix Symbian problemsKalle Lehtonen2011-05-092-0/+3
| | | | | | | There is a fix for Qt3d library header exporting and library link statement to libraries and apps using it. Change-Id: I39758ca874e9aee52b6594808bce23f3bb4887bf
* Fixes to build system for mac.Sarah Smith2011-04-204-4/+4
| | | | | | Few paths wrong after recent windows commit. Change-Id: Ia414c346be6bda5b22a30972063432fdb60db283
* First cut of windows packagingSarah Smith2011-04-204-16/+79
|
* Generate packages for N900.Sarah Smith2011-04-142-2/+2
|
* Move plugins and imports into place during compile.Sarah Smith2011-04-115-0/+5
| | | | | | | | QtQuick3D puts everything into place that it needs to run during the compile step. You should be able to build and then run, without having to do make install. Don't know how this got missed previously.
* Device packaging. QTBUG-17434.Sarah Smith2011-04-064-4/+4
| | | | | | | | | | Few fixups required for header location, and plugins not linked to requisite libs. The rest of it is adding .desktop files and icons. Many of the icons are duplicates but at some point some apps will likely get their own icons, so don't share a common icon. Many apps run just fine, a few have bogus names, bad icons and other niggles. Apps that don't run are subject of other bug reports.
* Packaging round one done.Sarah Smith2011-04-045-9/+32
| | | | | | | See QTBUG-17434 for more details. Packaging on a debian desktop system works. Tested with Ubuntu 10.10 which is currently one of few with Qt 4.7.x packages.
* Remove scenegraph / qml2 support.Sarah Smith2011-03-305-528/+0
| | | | | QML2 will not be available in public packages for a while so no point in having it in here and causing support headaches.
* Linux fixes for new repo.Sarah Smith2011-03-191-1/+4
| | | | Now builds on linux, albeit with lots of warnings.
* Add files ported from research/qt3dSarah Smith2011-03-0954-0/+6432
Fill repo with some of the files from the research/qt3d project. At present the new project builds under MacOSX. To-dos include getting it building under linux, windows, harmattan and maemo/meego; updating the documentation to reflect the new QtQuick focus; and fixing the issues with private headers.