Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/nodes/NOD_node_tree_multi_function.hh')
-rw-r--r--source/blender/nodes/NOD_node_tree_multi_function.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/nodes/NOD_node_tree_multi_function.hh b/source/blender/nodes/NOD_node_tree_multi_function.hh
index 0d2d25ff5ef..e4923215109 100644
--- a/source/blender/nodes/NOD_node_tree_multi_function.hh
+++ b/source/blender/nodes/NOD_node_tree_multi_function.hh
@@ -90,7 +90,7 @@ class MFNetworkTreeMap {
sockets_by_xxx_socket_.add(dsocket, &socket);
}
- void add(const XXXNodeTreeContext &context,
+ void add(const XXXTreeContext &context,
Span<const InputSocketRef *> dsockets,
Span<fn::MFInputSocket *> sockets)
{
@@ -100,7 +100,7 @@ class MFNetworkTreeMap {
}
}
- void add(const XXXNodeTreeContext &context,
+ void add(const XXXTreeContext &context,
Span<const OutputSocketRef *> dsockets,
Span<fn::MFOutputSocket *> sockets)
{
@@ -120,7 +120,7 @@ class MFNetworkTreeMap {
node.outputs().cast<fn::MFSocket *>());
}
- void add_try_match(const XXXNodeTreeContext &context,
+ void add_try_match(const XXXTreeContext &context,
Span<const InputSocketRef *> dsockets,
Span<fn::MFInputSocket *> sockets)
{
@@ -128,7 +128,7 @@ class MFNetworkTreeMap {
context, dsockets.cast<const SocketRef *>(), sockets.cast<fn::MFSocket *>());
}
- void add_try_match(const XXXNodeTreeContext &context,
+ void add_try_match(const XXXTreeContext &context,
Span<const OutputSocketRef *> dsockets,
Span<fn::MFOutputSocket *> sockets)
{
@@ -136,7 +136,7 @@ class MFNetworkTreeMap {
context, dsockets.cast<const SocketRef *>(), sockets.cast<fn::MFSocket *>());
}
- void add_try_match(const XXXNodeTreeContext &context,
+ void add_try_match(const XXXTreeContext &context,
Span<const SocketRef *> dsockets,
Span<fn::MFSocket *> sockets)
{