summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/instanced-arrays-qml
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-18 09:58:19 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-10-19 10:51:25 +0000
commit18964d9ebed281a72506eccdf26319ce18be46d7 (patch)
tree9c184a8645f0d3ea72fc692f84332fc9be01bf2e /examples/qt3d/instanced-arrays-qml
parentd9ae5577ea87ae23731fe54dd79fd80ecd1de1fa (diff)
Rename Renderer -> Render throughout
This is for consistency between the C++ namespaces and QML imports and with the other aspects. Change-Id: I73392f138b4e519b12888f52530123e3d0ba445e Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'examples/qt3d/instanced-arrays-qml')
-rw-r--r--examples/qt3d/instanced-arrays-qml/instancebuffer.h2
-rw-r--r--examples/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro2
-rw-r--r--examples/qt3d/instanced-arrays-qml/main.cpp2
-rw-r--r--examples/qt3d/instanced-arrays-qml/main.qml2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/qt3d/instanced-arrays-qml/instancebuffer.h b/examples/qt3d/instanced-arrays-qml/instancebuffer.h
index 6bea7ca97..6ff61d47c 100644
--- a/examples/qt3d/instanced-arrays-qml/instancebuffer.h
+++ b/examples/qt3d/instanced-arrays-qml/instancebuffer.h
@@ -37,7 +37,7 @@
#ifndef INSTANCEBUFFER_H
#define INSTANCEBUFFER_H
-#include <Qt3DRenderer/QBuffer>
+#include <Qt3DRender/QBuffer>
class InstanceBuffer : public Qt3DRender::QBuffer
{
diff --git a/examples/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro b/examples/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro
index a6f569ffc..d15f5ad56 100644
--- a/examples/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro
+++ b/examples/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro
@@ -2,7 +2,7 @@
error( "Couldn't find the examples.pri file!" )
}
-QT += qml quick 3dcore 3drenderer 3dinput 3dquick
+QT += qml quick 3dcore 3drender 3dinput 3dquick
SOURCES += \
main.cpp \
diff --git a/examples/qt3d/instanced-arrays-qml/main.cpp b/examples/qt3d/instanced-arrays-qml/main.cpp
index 4638d910f..cbadc0f88 100644
--- a/examples/qt3d/instanced-arrays-qml/main.cpp
+++ b/examples/qt3d/instanced-arrays-qml/main.cpp
@@ -36,7 +36,7 @@
#include "instancebuffer.h"
#include <window.h>
-#include <Qt3DRenderer/QRenderAspect>
+#include <Qt3DRender/QRenderAspect>
#include <Qt3DInput/QInputAspect>
#include <Qt3DQuick/QQmlAspectEngine>
#include <QtQml>
diff --git a/examples/qt3d/instanced-arrays-qml/main.qml b/examples/qt3d/instanced-arrays-qml/main.qml
index 6f16af66e..7f944a8fe 100644
--- a/examples/qt3d/instanced-arrays-qml/main.qml
+++ b/examples/qt3d/instanced-arrays-qml/main.qml
@@ -35,7 +35,7 @@
****************************************************************************/
import Qt3D.Core 2.0
-import Qt3D.Renderer 2.0
+import Qt3D.Render 2.0
import QtQuick 2.2 as QQ2
Entity {