Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. QQuickWidget crash

QQuickWidget crash

Scheduled Pinned Locked Moved QML and Qt Quick
4 Posts 2 Posters 2.5k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    morriluca
    wrote on last edited by
    #1

    this is my problem with this code
    @QQuickWidget *view = new QQuickWidget(this);
    view->setSource(QUrl("qrc:///Video.qml"));
    view->show();@

    when i compile with QT creator is ok.
    But, when I run executable into second pc, copy all QT library, the app crash with error iglicd32.dll library.
    I compile with qt5.3.0 in windows xp sp3, and second pc is windows xp sp3.

    If i Remove the code

    @//QQuickWidget *view = new QQuickWidget(this);
    //view->setSource(QUrl("qrc:///Video.qml"));
    //view->show();@

    the app work.

    HELP ME!!!! ;-(

    1 Reply Last reply
    0
    • M Offline
      M Offline
      morriluca
      wrote on last edited by
      #2

      I find the problem. The second pc mount a graphics card intel 945.
      the problem is in Opengl. If i go to intel graphics options, section 3d and change buffer bit to 16bit, the application don't crash, but show black screen.
      I suppose there's a problem with qt and intel.
      Now, is a QT problem, or a Intel driver Problem?

      1 Reply Last reply
      0
      • JKSHJ Offline
        JKSHJ Offline
        JKSH
        Moderators
        wrote on last edited by
        #3

        Hi,

        Qt Quick requires OpenGL 2.0 or greater. However, the Intel 945 only supports up to OpenGL 1.4: https://software.intel.com/en-us/forums/topic/284458

        You cannot use Qt Quick + OpenGL with this graphics card.

        One possible solution is to download a non-OpenGL version of Qt, and use that to compile your app.

        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

        1 Reply Last reply
        0
        • M Offline
          M Offline
          morriluca
          wrote on last edited by
          #4

          Thank you for your response. I try to compile with visual studio 2013 without opengl.

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved