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-03-27 05:28:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-27 05:28:25 +0400
commitf83a93e454e4a92d9619bc5bd16d73525e41ce46 (patch)
tree595264dbcf15b38e3f85c2238facea799fe28277 /source/blender/collada/MeshImporter.cpp
parentae654301b041cae9cce8107614c1d17bae3ff12a (diff)
bmesh todo, unlikly but possible - entering editmode with faces and no polys.
rather then printing a warning and failing - convert them to polys.
Diffstat (limited to 'source/blender/collada/MeshImporter.cpp')
-rw-r--r--source/blender/collada/MeshImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/MeshImporter.cpp b/source/blender/collada/MeshImporter.cpp
index e50005634ba..dc0892f6bed 100644
--- a/source/blender/collada/MeshImporter.cpp
+++ b/source/blender/collada/MeshImporter.cpp
@@ -965,6 +965,6 @@ bool MeshImporter::write_geometry(const COLLADAFW::Geometry* geom)
mesh_calc_normals_mapping(me->mvert, me->totvert, me->mloop, me->mpoly, me->totloop, me->totpoly, NULL, NULL, 0, NULL, NULL);
- convert_mfaces_to_mpolys(me);
+ BKE_mesh_convert_mfaces_to_mpolys(me);
return true;
}