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>2014-05-13 11:46:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-13 11:48:25 +0400
commit46bd759964cad419a65c38de69770d7a3cb7a836 (patch)
tree0687880f74454ccc163fa827a5bd8c521d31d9f4 /source/blender/bmesh/intern/bmesh_polygon.c
parent19b82be61e47cd30b72b7b215bd46c78e8207c89 (diff)
Code cleanup: rename BM_face_legal_splits -> BM_face_splits_check_legal
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.c b/source/blender/bmesh/intern/bmesh_polygon.c
index 08619cd9699..32b9d81a223 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.c
+++ b/source/blender/bmesh/intern/bmesh_polygon.c
@@ -986,7 +986,7 @@ void BM_face_triangulate(BMesh *bm, BMFace *f,
* intersecting splits, only the first of the set of intersecting
* splits survives
*/
-void BM_face_legal_splits(BMFace *f, BMLoop *(*loops)[2], int len)
+void BM_face_splits_check_legal(BMFace *f, BMLoop *(*loops)[2], int len)
{
const int len2 = len * 2;
BMLoop *l;