pyWindows下如何在Qt 5.9中启用WebGL



我想在Windows下的QtWebEngineWidgets.QWebEngineView中使用WebGL和我的Qt 5.9.2

但当我尝试加载webglreport.com时,在QWebEngineView中,它告诉我,"This browser supports WebGL 2, but it is disabled or unavailable."

我该怎么修?

这是我的代码:

PyQt:

import os, sys
from PyQt5 import QtCore, QtGui, QtWidgets, QtWebEngineWidgets

if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)

# app.setAttribute(QtCore.Qt.AA_UseOpenGLES)  # nothing happens, you can comment it out
view = QtWebEngineWidgets.QWebEngineView()
# view.settings().setAttribute(QtWebEngineWidgets.QWebEngineSettings.WebGLEnabled, True) # does not help too = (((
view.load(QtCore.QUrl("http://webglreport.com/?v=2"))
view.show()
sys.exit(app.exec_())
# And here WebGL Report  will tell me: "This browser supports WebGL 2, but it is disabled or unavailable."
# How can I cope with it???

C++Qt:

#include <QApplication>
#include <QtWebEngineWidgets/QWebEngineView>
#include <QUrl>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWebEngineView view;
view.load(QUrl("http://webglreport.com/"));
view.show();
return a.exec();
}

二进制包

为Python v3.5及更高版本的64位Linux、macOS以及32位和64位Windows提供了轮子。其中包括相应Qt库的副本。

请注意,支持的macOS的最低版本由转轮中包含的Qt版本决定。

请注意,对于v5.11及更高版本,32位Windows轮子不包含WebEngine模块。pyqt下载

相关内容

  • 没有找到相关文章

最新更新