diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-05-25 23:01:50 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-05-25 23:01:50 (GMT) |
commit | 07929fef22cb9cffc059f949e216ec585e0e7466 (patch) | |
tree | efb8e9b77a42e528c4e58b9346c773bb3c91688a /src/declarative/fx/qfxwebview.cpp | |
parent | f8efe236ec6cb0a8f162f74c9af9682705ff13ed (diff) | |
download | Qt-07929fef22cb9cffc059f949e216ec585e0e7466.zip Qt-07929fef22cb9cffc059f949e216ec585e0e7466.tar.gz Qt-07929fef22cb9cffc059f949e216ec585e0e7466.tar.bz2 |
Switch from QImage to QPixmap, to allow OpenVG optimization.
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.
Diffstat (limited to 'src/declarative/fx/qfxwebview.cpp')
-rw-r--r-- | src/declarative/fx/qfxwebview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxwebview.cpp b/src/declarative/fx/qfxwebview.cpp index 7998711..0e86249 100644 --- a/src/declarative/fx/qfxwebview.cpp +++ b/src/declarative/fx/qfxwebview.cpp @@ -161,7 +161,7 @@ public: int age; QRect area; #if defined(QFX_RENDER_QPAINTER) - QSimpleCanvasConfig::Image image; + QPixmap image; #else GLTexture image; #endif |