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-04-16 09:03:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-16 09:03:04 +0400
commit79693e45431bb7ea3ba980a83081b0c98cd422de (patch)
tree8606a48fab2109cd7caca586e0375a6287213d7c /source/blender/blenkernel/intern/mesh.c
parentd89db25c53b4b00038061dc15fede87dd36276a0 (diff)
code cleanup: avoid confusion with incorrectly named argument to BLI_edgefill(), was 'mat_nr', now 'do_quad_tri_speedup'
Diffstat (limited to 'source/blender/blenkernel/intern/mesh.c')
-rw-r--r--source/blender/blenkernel/intern/mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c
index 9a10a00bf45..2a22324a0ab 100644
--- a/source/blender/blenkernel/intern/mesh.c
+++ b/source/blender/blenkernel/intern/mesh.c
@@ -2478,7 +2478,7 @@ int mesh_recalcTessellation(CustomData *fdata,
}
BLI_addfilledge(lastv, firstv);
- totfilltri = BLI_edgefill(2);
+ totfilltri = BLI_edgefill(FALSE);
if (totfilltri) {
BLI_array_growitems(mface_to_poly_map, totfilltri);
BLI_array_growitems(mface, totfilltri);