summaryrefslogtreecommitdiffstats
path: root/tests/auto/qpixmap
diff options
context:
space:
mode:
authorShane Kearns <shane.kearns@sosco.com>2009-10-20 11:34:55 (GMT)
committerShane Kearns <shane.kearns@sosco.com>2009-10-20 11:45:02 (GMT)
commitf7d826f1a42c912f1db15da0a1cefe13bdd54906 (patch)
tree8c230d1d670130687a4301c0d4b90e7a5052a0df /tests/auto/qpixmap
parentda3e89e8d98a4d3322eae94aafd38ddb444f144e (diff)
downloadQt-f7d826f1a42c912f1db15da0a1cefe13bdd54906.zip
Qt-f7d826f1a42c912f1db15da0a1cefe13bdd54906.tar.gz
Qt-f7d826f1a42c912f1db15da0a1cefe13bdd54906.tar.bz2
Use premultiplied alpha pixel format in Symbian
Gives better performance in the raster paint engine. For Symbian 9.3 onwards, this can also be used as the native pixmap format. For 9.2, conversion is required. Reviewed-by: Sami Merila Reviewed-by: Jani Hautakangas
Diffstat (limited to 'tests/auto/qpixmap')
-rw-r--r--tests/auto/qpixmap/tst_qpixmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qpixmap/tst_qpixmap.cpp b/tests/auto/qpixmap/tst_qpixmap.cpp
index 36c1518..9f5aee2 100644
--- a/tests/auto/qpixmap/tst_qpixmap.cpp
+++ b/tests/auto/qpixmap/tst_qpixmap.cpp
@@ -1144,7 +1144,7 @@ void tst_QPixmap::fromSymbianCFbsBitmap_data()
// QTest::newRow("EColor16MA small trans") << EColor16MA << smallWidth << smallHeight << QColor(255, 255, 0, 0);
// QTest::newRow("EColor16MA big trans") << EColor16MA << largeWidth << largeHeight << QColor(255, 255, 0, 0);
-#if !defined(__SERIES60_31__) && !defined(__S60_32__)
+#if !defined(__SERIES60_31__)
QTest::newRow("EColor16MAP small") << EColor16MAP << smallWidth << smallHeight << QColor(Qt::red);
QTest::newRow("EColor16MAP big") << EColor16MAP << largeWidth << largeHeight << QColor(Qt::red);
#endif