Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
None
-
6.7.0, 6.7.1
-
None
Description
Since Qt 6.7.0 the software backend of web engine is very slow and it became unusable.
Please look at attached videos.
Sample code to reproduce the issue:
#include <QApplication> #include <QWebEngineView> #include <QQuickView> int main(int argc, char *argv[]) { QQuickView::setGraphicsApi(QSGRendererInterface::Software); QApplication::setAttribute(Qt::AA_ForceRasterWidgets); QApplication a(argc, argv); QWebEngineView w; w.setUrl(QUrl("https://www.google.com/search?q=qt+6.7")); w.showMaximized(); return a.exec(); }