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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/backend/framegraph/framegraphnode.cpp b/src/render/backend/framegraph/framegraphnode.cpp
index 0ca5c9965..8742399ed 100644
--- a/src/render/backend/framegraph/framegraphnode.cpp
+++ b/src/render/backend/framegraph/framegraphnode.cpp
@@ -149,15 +149,15 @@ QBackendNode *FrameGraphComponentFunctor::create(QNode *frontend, const QBackend
return Q_NULLPTR;
}
-QBackendNode *FrameGraphComponentFunctor::get(QNode *frontend) const
+QBackendNode *FrameGraphComponentFunctor::get(const QNodeId &id) const
{
- Q_UNUSED(frontend);
+ Q_UNUSED(id);
return Q_NULLPTR;
}
-void FrameGraphComponentFunctor::destroy(QNode *frontend) const
+void FrameGraphComponentFunctor::destroy(const QNodeId &id) const
{
- Q_UNUSED(frontend);
+ Q_UNUSED(id);
}
} // namespace Render