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:
authorHans Goudey <h.goudey@me.com>2022-09-15 21:14:31 +0300
committerHans Goudey <h.goudey@me.com>2022-09-15 21:14:31 +0300
commitd5df23d7581230da7ab5cfd5764a46f7f7941759 (patch)
tree5e9ab952eeb90be36004b2a0abecc58f3536e4c2 /source/blender/blenkernel/intern/curves.cc
parent0945ae338b4e7752baaea445ac193c24ff2f4d57 (diff)
Cleanup: Rename attribute required functions
Avoid "customdata" in the name, since that's an implementation detail in this context.
Diffstat (limited to 'source/blender/blenkernel/intern/curves.cc')
-rw-r--r--source/blender/blenkernel/intern/curves.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/curves.cc b/source/blender/blenkernel/intern/curves.cc
index e729fed050b..d801484de62 100644
--- a/source/blender/blenkernel/intern/curves.cc
+++ b/source/blender/blenkernel/intern/curves.cc
@@ -263,7 +263,7 @@ BoundBox *BKE_curves_boundbox_get(Object *ob)
return ob->runtime.bb;
}
-bool BKE_curves_customdata_required(const Curves *UNUSED(curves), const char *name)
+bool BKE_curves_attribute_required(const Curves *UNUSED(curves), const char *name)
{
return STREQ(name, ATTR_POSITION);
}