Skip to content
  • 0 Votes
    14 Posts
    2k Views
    raven-worxR

    @milan said in Qt App runs and exits with crash 1073741819:

    But, I do not understand which widget is using OpenGL

    QQuickWidget (=> QML)
    Unless you explicitly tell it to use the software rasterizing backend.
    e.g. either via code QQuickWindow::setSceneGraphBackend(QSGRendererInterface::Software); or via environment variable QT_QUICK_BACKEND=software
    (before QApplication instantiation)

  • Qt Error

    Unsolved General and Desktop
    45
    0 Votes
    45 Posts
    15k Views
    mrjjM

    @jack9603301
    Good to hear.
    Happy code :)