sdwarwick
sdwarwick
Any plans to fix this?
Although this appears to be an old problem, it has far-reaching implications for system optimization. In cases where `@Entities` are being used both to specify database and JSON serialization strategies,...
What ever happened to this?
I re-compiled musescore master, replacing the following: ``` app.cpp: /*QCoreApplication::setAttribute(Qt::AA_UseOpenGLES);*/ QCoreApplication::setAttribute(Qt::AA_UseSoftwareOpenGL); ``` This fixed the problem. I checked my display devices, found the following: 1. Intel HD Graphics 4000 -...
have also determined that commenting out the line: ``` /*QCoreApplication::setAttribute(Qt::AA_UseOpenGLES);*/ ``` and setting the following environment variable also works: ``` $env:QT_OPENGL = 'software' ```
see ``` https://doc.qt.io/qt-6/opengl-changes-qt6.html ``` On Windows, ANGLE, a third-party OpenGL ES to Direct 3D translator, is no longer included in Qt 6. This means Qt::AA_UseOpenGLES and the environment variable QT_OPENGL=angle...
am looking at app.cpp: ``` #ifndef MU_QT5_COMPAT // Necessary for QQuickWidget, but potentially suboptimal for performance. // Remove as soon as possible. QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL); #endif ``` I believe that this may...
Have found that removing both of these references to OPENGL fixes this problem: ``` #ifdef Q_OS_WIN // NOTE: There are some problems with rendering the application window on some integrated...
Is the problem only seen with that widget or more generally? ________________________________ From: Casper Jeukendrup ***@***.***> Sent: Thursday, April 18, 2024 8:36:46 PM To: musescore/MuseScore ***@***.***> Cc: Steven Warwick ***@***.***>;...
am seeing different behavior - Format -> Style actually is working for many of the settings ( this is even using the 6.2.4 version of Qt) , however there are...