Skip to content

Commit f292cc7

Browse files
authored
Merge pull request #77 from Guiguiprim/add-3drender
Add 3DRender in modules list (issue #76)
2 parents 8c9040e + 56f4194 commit f292cc7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/deployers/PluginsDeployerFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ std::vector<std::shared_ptr<PluginsDeployer>> PluginsDeployerFactory::getDeploye
6868
return {getInstance<QmlPluginsDeployer>(moduleName)};
6969
}
7070

71-
if (moduleName == "3dquickrender") {
71+
if (moduleName == "3dquickrender" || moduleName == "3drender") {
7272
return {getInstance<Qt3DPluginsDeployer>(moduleName)};
7373
}
7474

src/qt-modules.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ static const std::vector<QtModule> QtModules = {
2323
{"3dextras", "libQt53DExtras", ""},
2424
{"3dinput", "libQt53DInput", ""},
2525
{"3dlogic", "libQt53DLogic", ""},
26+
{"3drender", "libQt53DRender", ""},
2627
{"3dquickanimation", "libQt53DQuickAnimation", ""},
2728
{"3dquickextras", "libQt53DQuickExtras", ""},
2829
{"3dquickinput", "libQt53DQuickInput", ""},

0 commit comments

Comments
 (0)