summaryrefslogtreecommitdiffstats
path: root/src/render/backend/framegraph/framegraphnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/backend/framegraph/framegraphnode.cpp')
-rw-r--r--src/render/backend/framegraph/framegraphnode.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/render/backend/framegraph/framegraphnode.cpp b/src/render/backend/framegraph/framegraphnode.cpp
index 8742399ed..b001fd675 100644
--- a/src/render/backend/framegraph/framegraphnode.cpp
+++ b/src/render/backend/framegraph/framegraphnode.cpp
@@ -40,7 +40,7 @@
QT_BEGIN_NAMESPACE
-namespace Qt3D {
+namespace Qt3DRender {
namespace Render {
FrameGraphNode::FrameGraphNode()
@@ -139,7 +139,7 @@ FrameGraphComponentFunctor::FrameGraphComponentFunctor(Renderer *renderer)
{
}
-QBackendNode *FrameGraphComponentFunctor::create(QNode *frontend, const QBackendNodeFactory *) const
+Qt3D::QBackendNode *FrameGraphComponentFunctor::create(Qt3D::QNode *frontend, const Qt3D::QBackendNodeFactory *) const
{
// TO DO: Ideally we should have a RenderFrameGraph component and use its setPeer method
// to do that
@@ -149,18 +149,18 @@ QBackendNode *FrameGraphComponentFunctor::create(QNode *frontend, const QBackend
return Q_NULLPTR;
}
-QBackendNode *FrameGraphComponentFunctor::get(const QNodeId &id) const
+Qt3D::QBackendNode *FrameGraphComponentFunctor::get(const Qt3D::QNodeId &id) const
{
Q_UNUSED(id);
return Q_NULLPTR;
}
-void FrameGraphComponentFunctor::destroy(const QNodeId &id) const
+void FrameGraphComponentFunctor::destroy(const Qt3D::QNodeId &id) const
{
Q_UNUSED(id);
}
} // namespace Render
-} // namespace Qt3D
+} // namespace Qt3DRender
QT_END_NAMESPACE