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>2012-02-26 23:46:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-26 23:46:12 +0400
commit5cfab7f52131b506ac1b138305aad34b7ca6e8e0 (patch)
tree8e8a1a406e4e41f4b597fd31cf2cd722b6833bef /source/blender/bmesh/tools
parentc956e5d2d92f8a687e6f884602a12adade7b6c09 (diff)
bmesh api name change, add _count suffix for BM_*_share functions.
Diffstat (limited to 'source/blender/bmesh/tools')
-rw-r--r--source/blender/bmesh/tools/BME_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/BME_bevel.c b/source/blender/bmesh/tools/BME_bevel.c
index 385c5662716..758e2479dd3 100644
--- a/source/blender/bmesh/tools/BME_bevel.c
+++ b/source/blender/bmesh/tools/BME_bevel.c
@@ -829,7 +829,7 @@ static void bevel_init_edges(BMesh *bm, int options, BME_TransData_Head *td)
/* clean up edges with 2 faces that share more than one edg */
BM_ITER(e, &iter, bm, BM_EDGES_OF_MESH, NULL) {
if(BMO_elem_flag_test(bm, e, BME_BEVEL_BEVEL)) {
- count = BM_face_share_edges(e->l->f, e->l->radial_next->f);
+ count = BM_face_share_edge_count(e->l->f, e->l->radial_next->f);
if(count > 1) BMO_elem_flag_disable(bm, e, BME_BEVEL_BEVEL);
}
}