Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    Smooth triangle with QGuiApplication::setAttribute(Qt::AA_UseSoftwareOpenGL, true)

    QML and Qt Quick
    1
    1
    878
    Loading More Posts
    • 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.
    • unclebenedict
      unclebenedict last edited by

      Im use QSGNode and QQuickItem for paint my item on qml scene. If user have weak graphics card, then item can not paint. In low graphics card im use QGuiApplication::setAttribute(Qt::AA_UseSoftwareOpenGL, true) for softfare opengl, all item paint, but not smooth. Example http://joxi.ru/wRmzQXSW65N6rO?d=1

      Im try

      QQuickView view;
      QSurfaceFormat format = view.format();
      format.setSamples(8);
      view.setFormat(format);

      but this not work on software opengl. How i can smoot triangle on software opengl ?

      1 Reply Last reply Reply Quote 0
      • First post
        Last post