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/pointcloud.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/pointcloud.cc')
-rw-r--r--source/blender/blenkernel/intern/pointcloud.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/pointcloud.cc b/source/blender/blenkernel/intern/pointcloud.cc
index a17ca1447f6..5c935bf6daf 100644
--- a/source/blender/blenkernel/intern/pointcloud.cc
+++ b/source/blender/blenkernel/intern/pointcloud.cc
@@ -339,7 +339,7 @@ BoundBox *BKE_pointcloud_boundbox_get(Object *ob)
return ob->runtime.bb;
}
-bool BKE_pointcloud_customdata_required(const PointCloud *UNUSED(pointcloud), const char *name)
+bool BKE_pointcloud_attribute_required(const PointCloud *UNUSED(pointcloud), const char *name)
{
return STREQ(name, POINTCLOUD_ATTR_POSITION);
}