Skip to content

Commit 8e55e01

Browse files
author
Pasi Pentikainen
committed
Symbian: disable OpenVG as default on Symbian emulator builds
Symbian emulator shows QML applications badly when OpenVG graphics system is used. This fix ignores OpenVG graphics system default configuration when built for emulator target. Task-number: ou1cimx1#1005008 Change-Id: I63fb89c5074e03fd582bfbbccca55f33473285c3 Reviewed-by: Pauli Järvinen <[email protected]> Reviewed-by: Shane Kearns <[email protected]> (cherry picked from commit 8393c80) Reviewed-by: Pasi Pentikäinen <[email protected]>
1 parent 88fecab commit 8e55e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/painting/qgraphicssystemfactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ QGraphicsSystem *QGraphicsSystemFactory::create(const QString& key)
6565
if (system.isEmpty()) {
6666
system = QLatin1String("opengl");
6767
}
68-
#elif defined (QT_GRAPHICSSYSTEM_OPENVG)
68+
#elif defined (QT_GRAPHICSSYSTEM_OPENVG) && !defined(Q_CC_NOKIAX86)
6969
if (system.isEmpty()) {
7070
system = QLatin1String("openvg");
7171
}

0 commit comments

Comments
 (0)