summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to release version.Jason McDonald2010-10-181-13/+13
|
* Don't overflow the unreferenced cost counterAaron Kennedy2010-09-021-0/+27
| | | | QTBUG-13345
* Only modify pixmap cache reply when protected by a mutexAaron Kennedy2010-08-121-0/+10
| | | | QTBUG-12729
* Limit the pixmap cache in space as well as in time.Aaron Kennedy2010-08-031-0/+40
| | | | QTBUG-12590
* Make declarative pixmap cache easier to useAaron Kennedy2010-07-051-58/+41
| | | | | | | | | | | | | | | | | The QDeclarativePixmapCache was both slow, and very trickey to use correctly. Many QML elements did not correctly cancel outstanding requests, which leads to pixmaps leaking indefinately. Other elements, such as Text, were subject to race conditions that meant they may never actually load all their images. QDeclarativePixmap is a single class than encapsulates the action of fetching a pixmap, as well as the pixmap itself and the responsibility of canceling outstanding requests. Rather than relying on Qt's pixmap cache that doesn't cache all the information QML needs, QDeclarativePixmap implements its own cache, that correctly degrades over time (unlike QPixmapCache that can stop expiring items in some conditions). Reviewed-by: Warwick Allison
* Make declarative autotests compile on Symbian abld build systemJoona Petrell2010-06-081-0/+5
| | | | | Task-number: Reviewed-by: Martin Jones
* Use qmlInfo for image loading errors, not qWarning().Warwick Allison2010-04-151-9/+14
| | | | Task-number: QTBUG-9908
* Stabilize test.Warwick Allison2010-04-141-12/+18
| | | | Uses built-in server.
* Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX ↵Leonardo Sobral Cunha2010-02-241-7/+7
| | | | to QDeclarativeXXX.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+282
QDeclarativeXXX.