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>2013-06-27 00:15:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-27 00:15:02 +0400
commit5fac3d9db5c10499e8c2142a51d4feeb74b23df3 (patch)
tree20b2c5d79b53bfe7fcb41486b1f160bb162e9ae4 /source/blender/bmesh/intern/bmesh_polygon.h
parent2daa901ec025e30818a977664e64ab99e1fcf23e (diff)
remove bmesh arg from BM_face_legal_splits(), don't use a bmesh iterator.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h
index 428a98e776c..54013cc0cfa 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -55,7 +55,7 @@ bool BM_face_point_inside_test(BMFace *f, const float co[3]);
void BM_face_triangulate(BMesh *bm, BMFace *f, BMFace **newfaces,
const bool use_beauty, const bool use_tag);
-void BM_face_legal_splits(BMesh *bm, BMFace *f, BMLoop *(*loops)[2], int len);
+void BM_face_legal_splits(BMFace *f, BMLoop *(*loops)[2], int len);
void BM_face_as_array_vert_tri(BMFace *f, BMVert *r_verts[3]);
void BM_face_as_array_vert_quad(BMFace *f, BMVert *r_verts[4]);