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. Smooth triangle with QGuiApplication::setAttribute(Qt::AA_UseSoftwareOpenGL, true)
Forum Update on Monday, May 27th 2025

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

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 1.0k Views
  • 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.
  • U Offline
    U Offline
    unclebenedict
    wrote on 24 Nov 2016, 14:45 last edited by
    #1

    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
    0

    1/1

    24 Nov 2016, 14:45

    • Login

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