Rename BKE_bmesh_to_mesh to BKE_bmesh_to_mesh_nomain.

Let's be clear about functions generating datablocks outside of Main
database.
This commit is contained in:
2018-05-08 11:03:16 +02:00
parent cf7c3462ed
commit 50e31136fd
7 changed files with 8 additions and 8 deletions

View File

@@ -124,7 +124,7 @@ static void deformVertsEM(
struct Mesh *mesh_src = mesh;
if (!mesh) {
mesh_src = BKE_bmesh_to_mesh(em->bm, &(struct BMeshToMeshParams){0});
mesh_src = BKE_bmesh_to_mesh_nomain(em->bm, &(struct BMeshToMeshParams){0});
}
deformVerts(md, ctx, mesh_src, vertexCos, numVerts);