Cleanup: Remove unused function

Unused after 943b919fe8
This commit is contained in:
2022-04-04 10:28:10 -05:00
parent 432ad4c632
commit 9eb4cb956b
2 changed files with 0 additions and 10 deletions

View File

@@ -33,6 +33,4 @@ struct RealizeInstancesOptions {
*/
GeometrySet realize_instances(GeometrySet geometry_set, const RealizeInstancesOptions &options);
GeometrySet realize_instances_legacy(GeometrySet geometry_set);
} // namespace blender::geometry

View File

@@ -1378,14 +1378,6 @@ GeometrySet realize_instances(GeometrySet geometry_set, const RealizeInstancesOp
return new_geometry_set;
}
GeometrySet realize_instances_legacy(GeometrySet geometry_set)
{
RealizeInstancesOptions options;
options.keep_original_ids = true;
options.realize_instance_attributes = false;
return realize_instances(std::move(geometry_set), options);
}
/** \} */
} // namespace blender::geometry