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/DoricRegistry.cpp

12 lines
255 B
C++
Raw Normal View History

2021-02-04 16:59:58 +08:00
#include "DoricRegistry.h"
#include "plugin/DoricShaderPlugin.h"
DoricRegistry::DoricRegistry() {
registerNativePlugin<DoricShaderPlugin>("shader");
}
bool DoricRegistry::acquirePluginInfo(QString name) {
return pluginInfoMap.acquireClass(name);
}