我想在Windows下的QtWebEngineWidgets.QWebEngineView
中使用Qt 5.9.2
中的WebGL。
但是当我尝试加载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();
}
答案 0 :(得分:1)
二进制包
为Python v3.5和更高版本的64位Linux,macOS以及32位和64位Windows提供了车轮。这些包括相应的Qt库的副本。
请注意,支持的最低macOS版本由转盘中包含的Qt版本决定。
请注意,对于v5.11和更高版本,32位Windows轮子不包含WebEngine模块。 pyqt download