This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/plugin/shader_plugin.cpp

7 lines
168 B
C++
Raw Normal View History

2019-12-17 17:05:57 +08:00
#include "shader_plugin.h"
Q_INVOKABLE void ShaderPlugin::render(QJSValue jsValue) {
QString viewId = jsValue.property("id").toString();
2019-12-19 19:54:58 +08:00
qDebug() << viewId;
2019-12-17 17:05:57 +08:00
}