From 21699a3fcebd60450e4054f883ba646abebf9f35 Mon Sep 17 00:00:00 2001 From: James Cotton Date: Wed, 29 Feb 2012 14:01:31 -0600 Subject: [PATCH] Set the grahpicssystem to "raster" in the code after the reported performance benefits. This can be overriden on the commandline with -graphicssystem --- ground/openpilotgcs/src/app/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ground/openpilotgcs/src/app/main.cpp b/ground/openpilotgcs/src/app/main.cpp index 62d8876a4..ec2191956 100644 --- a/ground/openpilotgcs/src/app/main.cpp +++ b/ground/openpilotgcs/src/app/main.cpp @@ -239,6 +239,8 @@ int main(int argc, char **argv) setrlimit(RLIMIT_NOFILE, &rl); #endif + QApplication::setGraphicsSystem("raster"); + SharedTools::QtSingleApplication app((QLatin1String(appNameC)), argc, argv); QString locale = QLocale::system().name();