summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/basicshapes-cpp
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-12-04 15:29:45 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-12-14 13:18:18 +0000
commitdc6e9d02ac1a9030308f2cdf11f96d4d3612fd6d (patch)
tree6a048366b8b69c9b271d1f2922c80080f4a7a098 /examples/qt3d/basicshapes-cpp
parentb93a30ab9e11663921fd583700f992da2a6b8448 (diff)
Remove initialize/shutdown from APIv5.6.0-beta1
Hiding them in QAspectEnginePrivate and calling them when needed from setRootEntity. Change-Id: I4c3dfb19d84ae90cc15bbff29a4abd0705bb61dc Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'examples/qt3d/basicshapes-cpp')
-rw-r--r--examples/qt3d/basicshapes-cpp/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/qt3d/basicshapes-cpp/main.cpp b/examples/qt3d/basicshapes-cpp/main.cpp
index f21ff51d3..7b6bc6f9f 100644
--- a/examples/qt3d/basicshapes-cpp/main.cpp
+++ b/examples/qt3d/basicshapes-cpp/main.cpp
@@ -90,7 +90,6 @@ int main(int argc, char **argv)
engine.registerAspect(new Qt3DRender::QRenderAspect());
Qt3DInput::QInputAspect *input = new Qt3DInput::QInputAspect;
engine.registerAspect(input);
- engine.initialize();
QVariantMap data;
data.insert(QStringLiteral("surface"), QVariant::fromValue(static_cast<QSurface *>(view)));
data.insert(QStringLiteral("eventSource"), QVariant::fromValue(view));