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:
authorCampbell Barton <ideasman42@gmail.com>2016-01-14 05:00:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-14 05:00:11 +0300
commitf5604af464cd2e2cbb271378df2827cbe6eaffe3 (patch)
treec803fb688ae839c82d7dbc0e571cdc8a34bbe14e /source/blender/modifiers
parentbc3db85da8c6aa101d6ccf8d50f8d11ee1b143de (diff)
Cleanup: use BM_mesh_* prefix for BMesh functions
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c
index 750fb472cc8..03ff902162d 100644
--- a/source/blender/modifiers/intern/MOD_boolean.c
+++ b/source/blender/modifiers/intern/MOD_boolean.c
@@ -234,7 +234,7 @@ static DerivedMesh *applyModifier_bmesh(
looptris = MEM_mallocN(sizeof(*looptris) * looptris_tot, __func__);
- BM_bmesh_calc_tessellation(bm, looptris, &tottri);
+ BM_mesh_calc_tessellation(bm, looptris, &tottri);
/* postpone this until after tessellating
* so we can use the original normals before the vertex are moved */