summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlimageprovider/tst_qmlimageprovider.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-166/+0
| | | | QDeclarativeXXX.
* Provide a very generous timeout for QmlImageProvider testMartin Jones2010-02-171-2/+4
| | | | | Because it runs in an idle thread, which you would expect to be quite slow under load.
* Add QmlImageProvider to allow asynchronous access to images.Martin Jones2010-02-161-0/+164
Setting an image source to image://providerid/imageid will pass the request for imageid to the provider registered for providerid. QmlImageProvider::request() is run in a low priority thread, so the main thread is not blocked while the image is loaded/rendered. Reviewed-by: Aaron Kennedy