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:
authorJacques Lucke <jacques@blender.org>2021-02-16 13:55:00 +0300
committerJacques Lucke <jacques@blender.org>2021-02-16 13:55:12 +0300
commit39f60e6909e61b8b7982e637a2091a84d618ddd7 (patch)
tree7a3c044f1bad7bfda338d1b21e3cd4d8f3474079 /source/blender/nodes/intern/node_geometry_exec.cc
parentc03650073e60194500e13dc996168c4930970f5b (diff)
Geometry Nodes: move some attribute utilities to blenkernel
I need to access these utilities from modifier code as well. Therefore, they should not live in the nodes module.
Diffstat (limited to 'source/blender/nodes/intern/node_geometry_exec.cc')
-rw-r--r--source/blender/nodes/intern/node_geometry_exec.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/node_geometry_exec.cc b/source/blender/nodes/intern/node_geometry_exec.cc
index 6ddeb73e31f..3de8209859b 100644
--- a/source/blender/nodes/intern/node_geometry_exec.cc
+++ b/source/blender/nodes/intern/node_geometry_exec.cc
@@ -134,7 +134,7 @@ AttributeDomain GeoNodeExecParams::get_highest_priority_input_domain(
}
if (input_domains.size() > 0) {
- return attribute_domain_highest_priority(input_domains);
+ return bke::attribute_domain_highest_priority(input_domains);
}
return default_domain;