aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/items
Commit message (Collapse)AuthorAgeFilesLines
* Compile without qt3supportYann Bodson2011-05-161-1/+1
|
* register canvas and related classessCharles Yin2011-05-161-0/+7
|
* canvasitem implementation based on painteditemCharles Yin2011-05-166-0/+3887
|
* Call QSGPaintedItem::paint() when the scene graph is synced.Yoann Lopes2011-05-131-1/+2
| | | | | At that moment the GUI thread is blocked and it is therefore safe to call paint() from the scenegraph thread.
* When calling update() on a QSGItem during the sync phase, we did not update.Gunnar Sletta2011-05-122-0/+10
| | | | | | The QSGCanvas autotest did this. Reviewed-by: Kim
* Fixed incorrect usage of `signals', `slots' in headersRohan McGovern2011-05-121-2/+2
| | | | | | | Qt headers must use Q_SIGNALS, Q_SLOTS. Reviewed-by: Jason McDonald Change-Id: I54b3322befd8f133d44aa48f3aa7cd96785d2e24
* Documentation and API cleanup of QSGMaterialGunnar Sletta2011-05-111-15/+15
|
* Delete the rendering thread when shutting downGunnar Sletta2011-05-111-1/+3
|
* Stop the render thread before deleting the QSGCanvas.Gunnar Sletta2011-05-112-9/+20
|
* Replaced grab() with scheduleUpdate().Kim Motoyoshi Kalland2011-05-102-16/+30
| | | | | | Replaced the synchronous function grab() with an asynchronous function scheduleUpdate() in QShaderEffectSource because synchronous grabbing doesn't work with threaded rendering.
* Documented which thread gets the QSGPaintedItem::paint() call.Yoann Lopes2011-05-101-0/+5
|
* Update to work with QGlyphs -> QGlyphRun renamingEskil Abrahamsen Blomfeldt2011-05-102-8/+8
| | | | | Just some search replace to make the repository compile after QGlyphs and related APIs were renamed.
* Added a separate property to enable mipmapping on QSGPaintedItem.Yoann Lopes2011-05-103-1/+41
| | | | Don't use QSGItem's smooth property for that anymore.
* Fix Rectangle implementation.Kim Motoyoshi Kalland2011-05-092-27/+50
|
* Renamed of texture material classes to be more intuitivly namedGunnar Sletta2011-05-091-2/+2
| | | | | | The assumption is that most people will use QSGTextureMaterial so this should be the one that works for both transparent and opaque textures. QSGOpaqueTextureMaterial is an optimization
* Removed a few warningsGunnar Sletta2011-05-091-0/+1
|
* Enable mipmapping for QSGPaintedItem's texture.Yoann Lopes2011-05-091-0/+1
|
* Fixed issues with ShaderEffectSource and threaded rendering.Kim Motoyoshi Kalland2011-05-092-8/+33
|
* Added 'recursive' property to ShaderEffectSource.Kim Motoyoshi Kalland2011-05-092-22/+107
| | | | | | If 'recursive' is set, ShaderEffectSource will keep two buffers, alternatingly sourcing from one while rendering into the other.
* Fix potential crash when displaying multiscripted textEskil Abrahamsen Blomfeldt2011-05-062-1/+8
| | | | | | | | | | | | | | Shaping has to be done in the current thread, otherwise the font engines index for each glyph (referenced in the msb of the glyph index) might not be valid yet, because the font engines list is populated when shaping is done. So we need to make sure that the render thread relayouts. Geometry changes will already cause a relayout, which will in turn cause another relayout when the paint node is updated. There doesn't seem to be any convenient and safe way of avoiding this doubling of the layout step if we want to have rendering in a different thread than the QML graph. Reviewed-by: Gunnar
* Make animation driver pluggable through the QSGContextGunnar Sletta2011-05-061-2/+2
|
* Implemented contentsSize and contentsScale for QSGPaintedItem.Yoann Lopes2011-05-053-16/+88
|
* Enable the threaded renderer.Gunnar Sletta2011-05-053-54/+27
| | | | | Disable by specifying QML_NO_THREADED_RENDERER if this causes problems
* Merge branch 'qtquick2' of scm.dev.nokia.troll.no:qt/qtdeclarative-staging ↵Alan Alpert2011-05-0526-318/+610
|\ | | | | | | into qtquick2
| * Merge branch 'qtquick2' of scm.dev.nokia.troll.no:qt/qtdeclarative-staging ↵Gunnar Sletta2011-05-0428-310/+602
| |\ | | | | | | | | | into qtquick2
| | * Update SG items with GV item changes.Martin Jones2011-05-0420-261/+545
| | |
| | * Code cleanup in QSGShaderEffectTexture.Kim Motoyoshi Kalland2011-05-032-17/+15
| | |
| | * Removed unused properties in QSGPaintedItem.Yoann Lopes2011-05-032-30/+0
| | |
| | * Added antialiasing property to QSGPaintedItem.Yoann Lopes2011-05-033-1/+36
| | |
| * | Merge branch 'qtquick2' of scm.dev.nokia.troll.no:qt/qtdeclarative-staging ↵Gunnar Sletta2011-05-026-16/+25
| |\ \ | | | | | | | | | | | | into qtquick2
| * | | Added a runtime option to enable consistent timing for animationsGunnar Sletta2011-05-021-2/+7
| | | |
| * | | Don't round flickable positions while panningGunnar Sletta2011-05-022-8/+8
| | | |
* | | | Model Particle fixesAlan Alpert2011-05-051-0/+2
| |_|/ |/| | | | | | | | Now tracks model count changes.
* | | Set ChildenDoNotOverlap flag on grids, lists and positioners.Kim Motoyoshi Kalland2011-05-025-2/+7
| |/ |/| | | | | | | | | QSGGridView, QSGListView, QSGRow, QSGColumn, QSGGrid and QSGFlow now all set the ChildrenDoNotOverlap flag which allows the scene graph to render nodes in a more optimal order.
* | Support mirroring the source rectangle of ShaderEffectSource.Kim Motoyoshi Kalland2011-04-291-2/+2
| |
* | Revert "Flipped texture coordinates right way up."Kim Motoyoshi Kalland2011-04-294-11/+14
| | | | | | | | | | | | | | | | This reverts commit ffb6fe57ee0ece18b6778889f7602811ab4ca822. Conflicts: src/declarative/scenegraph/qsgdefaultimagenode.cpp
* | Fixed signal passing between nested ShaderEffectItems.Kim Motoyoshi Kalland2011-04-293-3/+9
|/
* Make text align in the same baselineJiang Jiang2011-04-292-11/+8
| | | | (cherry picked from commit 3f0e1ac647cc8ab700b85772264bc2a95e5301fa)
* Sort gradient stops for the convenience of the scenegraphAlan Alpert2011-04-281-2/+6
| | | | | | | | | | | The scenegraph gradients require sorted graident stops, whereas QML does not. Gradient stops are now sorted at the point they are passed into the scenegraph. Change-Id: I499dd00dc78e60dfc2053f2ee3691e61e0cf2a5d Task-number: QTBUG-18494 Reviewed-by: Martin Jones (cherry picked from commit 8cbd68b29224eed19f6ca6ec8186766c69a35c83)
* Pre-accept eventsAlan Alpert2011-04-281-0/+2
| | | | | | | | | Key handler expects events to be accepted, and will ignore them if necessary. Change-Id: I8ee110d70c98ff7c2de107b44e7d51aab12678c4 Reviewed-by: Michael Brasser (cherry picked from commit 6476bbea1d7905f083789224accc8f4b43a0779b)
* Initial import from qtquick2.Qt by Nokia2011-04-27103-0/+40226
Branched from the monolithic repo, Qt qtquick2 branch, at commit a4a585d2ee907746682846ae6e8a48e19deef469