From d2ce4925a8b704a860e57f2793e48c35ef6e31b6 Mon Sep 17 00:00:00 2001 From: Sylvain Doremus Date: Fri, 17 Mar 2023 22:29:19 +0100 Subject: [PATCH] Fixed pass group full name. --- source/RenderGraph/FramePassGroup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/RenderGraph/FramePassGroup.cpp b/source/RenderGraph/FramePassGroup.cpp index 927cff7..d0372cf 100644 --- a/source/RenderGraph/FramePassGroup.cpp +++ b/source/RenderGraph/FramePassGroup.cpp @@ -236,6 +236,6 @@ namespace crg { return ( &m_graph.getDefaultGroup() == this ) ? m_graph.getName() - : m_graph.getName() + "/" + getName(); + : parent->getFullName() + "/" + getName(); } }