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:
authorGermano Cavalcante <germano.costa@ig.com.br>2022-04-06 02:33:06 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2022-04-06 02:33:06 +0300
commit931ae424b9ef09b446d9584df51d27ac2a137cf2 (patch)
tree621f31a3f2a8bba0a9923a44bb535d63d13fcdeb /source/blender/blenkernel/intern/mesh_remap.c
parent9fbf7f1180501fc868a38dccecfbc71f6747b4e9 (diff)
BVH Utils: remove 'isolate' parameter
This is an internal usage parameter. No functional changes.
Diffstat (limited to 'source/blender/blenkernel/intern/mesh_remap.c')
-rw-r--r--source/blender/blenkernel/intern/mesh_remap.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/mesh_remap.c b/source/blender/blenkernel/intern/mesh_remap.c
index aed52bd9cab..9a4c01ec7aa 100644
--- a/source/blender/blenkernel/intern/mesh_remap.c
+++ b/source/blender/blenkernel/intern/mesh_remap.c
@@ -1514,8 +1514,7 @@ void BKE_mesh_remap_calc_loops_from_mesh(const int mode,
num_verts_active,
0.0,
2,
- 6,
- false);
+ 6);
}
MEM_freeN(verts_active);
@@ -1553,8 +1552,7 @@ void BKE_mesh_remap_calc_loops_from_mesh(const int mode,
num_looptri_active,
0.0,
2,
- 6,
- false);
+ 6);
}
MEM_freeN(looptri_active);