/* * Use e.g. the following mesa-issue-qtwebengine.pro to build: * ---clip--- * TEMPLATE = app * TARGET = mesa-issue-qtwebengine * QT = webenginewidgets * SOURCES += mesa-issue-qtwebengine.cc * ---clip--- * */ #include #include int main(int argc, char* argv[]) { QApplication app(argc, argv); QWebEngineView view; view.load(QUrl("chrome:gpu")); view.show(); return app.exec(); }