From bd7b181e1057db7b68ab0f7947529f3cef962e8d Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Thu, 30 Jun 2022 21:52:04 -0500 Subject: [PATCH] Cleanup: Remove outdated comments Point clouds always use geometry_set_eval, and so do volumes. --- source/blender/blenkernel/intern/geometry_set_instances.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/blender/blenkernel/intern/geometry_set_instances.cc b/source/blender/blenkernel/intern/geometry_set_instances.cc index 2d6e0e05a97..6b260207995 100644 --- a/source/blender/blenkernel/intern/geometry_set_instances.cc +++ b/source/blender/blenkernel/intern/geometry_set_instances.cc @@ -71,11 +71,6 @@ GeometrySet object_get_evaluated_geometry_set(const Object &object) return geometry_set; } - /* TODO: Cover the case of point clouds without modifiers-- they may not be covered by the - * #geometry_set_eval case above. */ - - /* TODO: Add volume support. */ - /* Return by value since there is not always an existing geometry set owned elsewhere to use. */ return {}; }