├── .qmake.conf ├── .tag ├── LICENSE.GPL3 ├── dependencies.yaml ├── dist ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 └── changes-5.15.1 ├── qtwebglplugin.pro ├── src ├── plugins │ ├── platforms │ │ ├── platforms.pro │ │ └── webgl │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── qwebglcontext.cpp │ │ │ ├── qwebglcontext.h │ │ │ ├── qwebglfunctioncall.cpp │ │ │ ├── qwebglfunctioncall.h │ │ │ ├── qwebglhttpserver.cpp │ │ │ ├── qwebglhttpserver.h │ │ │ ├── qwebglintegration.cpp │ │ │ ├── qwebglintegration.h │ │ │ ├── qwebglintegration_p.h │ │ │ ├── qwebglmain.cpp │ │ │ ├── qwebglplatformservices.cpp │ │ │ ├── qwebglplatformservices.h │ │ │ ├── qwebglscreen.cpp │ │ │ ├── qwebglscreen.h │ │ │ ├── qwebglwebsocketserver.cpp │ │ │ ├── qwebglwebsocketserver.h │ │ │ ├── qwebglwindow.cpp │ │ │ ├── qwebglwindow.h │ │ │ ├── qwebglwindow_p.h │ │ │ ├── webgl.json │ │ │ ├── webgl.pro │ │ │ ├── webgl.qrc │ │ │ └── webqt.jsx │ └── plugins.pro └── src.pro ├── sync.profile └── tests ├── global └── global.cfg ├── plugins ├── platforms │ ├── platforms.pro │ └── webgl │ │ ├── BLACKLIST │ │ ├── LauncherList.qml │ │ ├── SimpleLauncherDelegate.qml │ │ ├── basic_scene.qml │ │ ├── colors.qml │ │ ├── images │ │ ├── back.png │ │ └── next.png │ │ ├── launcher.qml │ │ ├── parameters.h │ │ ├── tst_webgl.cpp │ │ └── webgl.pro └── plugins.pro └── tests.pro /.qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/.qmake.conf -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 91068361c9c28f8280ccab26689a34fc842177c9 2 | -------------------------------------------------------------------------------- /LICENSE.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/LICENSE.GPL3 -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /qtwebglplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/qtwebglplugin.pro -------------------------------------------------------------------------------- /src/plugins/platforms/platforms.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += webgl 4 | -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/favicon.ico -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/index.html -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglcontext.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglcontext.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglfunctioncall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglfunctioncall.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglfunctioncall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglfunctioncall.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglhttpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglhttpserver.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglhttpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglhttpserver.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglintegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglintegration.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglintegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglintegration.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglintegration_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglintegration_p.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglmain.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglplatformservices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglplatformservices.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglplatformservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglplatformservices.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglscreen.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglscreen.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglwebsocketserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglwebsocketserver.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglwebsocketserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglwebsocketserver.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglwindow.cpp -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglwindow.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/qwebglwindow_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/qwebglwindow_p.h -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/webgl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "webgl" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/webgl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/webgl.pro -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/webgl.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/webgl.qrc -------------------------------------------------------------------------------- /src/plugins/platforms/webgl/webqt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/platforms/webgl/webqt.jsx -------------------------------------------------------------------------------- /src/plugins/plugins.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/plugins/plugins.pro -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/src/src.pro -------------------------------------------------------------------------------- /sync.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/sync.profile -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/plugins/platforms/platforms.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += \ 4 | webgl 5 | -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/BLACKLIST: -------------------------------------------------------------------------------- 1 | windows 32bit ci 2 | b2qt 3 | -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/LauncherList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/LauncherList.qml -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/SimpleLauncherDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/SimpleLauncherDelegate.qml -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/basic_scene.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | Item {} 4 | -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/colors.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/colors.qml -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/images/back.png -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/images/next.png -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/launcher.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/launcher.qml -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/parameters.h -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/tst_webgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/tst_webgl.cpp -------------------------------------------------------------------------------- /tests/plugins/platforms/webgl/webgl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebglplugin/HEAD/tests/plugins/platforms/webgl/webgl.pro -------------------------------------------------------------------------------- /tests/plugins/plugins.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += \ 4 | platforms 5 | -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += \ 4 | plugins 5 | --------------------------------------------------------------------------------