From 79ba4fde1591ce20c23608276975c691cd3c9302 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Wed, 7 Apr 2021 15:49:02 -0500 Subject: Cleanup: Rename function, switch order of arguments The function name was not very specific, this makes it clearer that it works on instances rather than only real geometry. Also use `r_` prefix for the return argument. --- source/blender/blenkernel/BKE_geometry_set_instances.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenkernel/BKE_geometry_set_instances.hh') diff --git a/source/blender/blenkernel/BKE_geometry_set_instances.hh b/source/blender/blenkernel/BKE_geometry_set_instances.hh index c372fdff049..c0d9c3f74ec 100644 --- a/source/blender/blenkernel/BKE_geometry_set_instances.hh +++ b/source/blender/blenkernel/BKE_geometry_set_instances.hh @@ -55,9 +55,9 @@ struct AttributeKind { * will contain the highest complexity data type and the highest priority domain among every * attribute with the given name on all of the input components. */ -void gather_attribute_info(Map &attributes, - Span component_types, - Span set_groups, - const Set &ignored_attributes); +void geometry_set_gather_instances_attribute_info(Span set_groups, + Span component_types, + const Set &ignored_attributes, + Map &r_attributes); } // namespace blender::bke -- cgit v1.2.3