浏览代码

Move OpenGL detection before first QApplication* constructor

I don't trust that QCoreApplication really does not touch these global
ctors which create some GL state.
Vincent Lang 8 年之前
父节点
当前提交
4614e3c2ff
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/main.cpp

+ 1 - 2
src/main.cpp

@@ -126,6 +126,7 @@ int main(int argc, char *argv[])
 #endif
 
     preinitQt();
+    detectOpenGLEarly();
 
     QStringList arguments;
     for (int i = 0; i < argc; i++)
@@ -157,8 +158,6 @@ int main(int argc, char *argv[])
     else
       qputenv("QT_SCALE_FACTOR", scale.toUtf8());
 
-    detectOpenGLEarly();
-
     QApplication app(argc, newArgv);
     app.setWindowIcon(QIcon(":/images/icon.png"));