summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxpainteditem.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Allow fill color to be specified, as solid fill makes for muchWarwick Allison2009-06-241-1/+28
| | | | | | faster painting. Better would be for the paint engine to work this out for itself, but that is often difficult.
* Clean up some code that has moved to QFxPaintedItemWarwick Allison2009-06-241-1/+0
|
* Move cacheSize property to QFxPaintedItem from QFxWebView.Warwick Allison2009-06-231-0/+47
| | | | Was missed in the refactoring.
* Make compile under Open GL ES 2.Michael Brasser2009-05-291-1/+1
| | | | We will need to optimize the pixmap.toImage calls.
* Switch from QImage to QPixmap, to allow OpenVG optimization.Warwick Allison2009-05-251-9/+5
| | | | | | | Switch QFxPixmap to use QPixmapCache, not own partial QImage cache. OpenGL prefers QImage for optimization, but that optimization is only partially preserved (QFxPixmap deals ONLY with QPixmap now). Opaque QFxPixmap no longer available.
* Remove non-working scale-to-width code.Warwick Allison2009-05-081-5/+3
| | | | | This does not belong here. Zooming can be done by parent. Also, it doesn't work. (was previously also removed from QFxWebView)
* Rename QFxImageItem to QFxPaintedItem.Ian Walters2009-05-051-0/+346
Done to avoid confusion with QFxImage and QFxAnimatedImage(Item)