I use pyside6 for creating qml user interface. But this interface is working correctly only on windows 10. Running problems are connected with using qml render interface. So I need to switch render interface to Qt Quick 2D renderer. But in official documentation i can't find how to do it with pyside
Asked
Active
Viewed 32 times
0
-
Your question is unclear. What is your specific question? – eyllanesc Aug 26 '21 at 17:50
-
@eyllanesc I want to set QtQuick2D as QML renderer from PySide – ChabErch Aug 26 '21 at 18:47
-
1use `os.environ["QT_QUICK_BACKEND"] = "software"` before `QXApplication` creation – eyllanesc Aug 26 '21 at 22:28