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>2015-11-05 17:56:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-05 17:56:29 +0300
commit1adc196723e058d11f8a9cb7fa4635f0e4d08b40 (patch)
tree9ef3b04d490fdb7fe4d410352c5f8dd1b14b14ec /source/blender/collada
parent131c2a2bef3c7e58c8cdb3bd1572e462da8295fe (diff)
Correct error in recent commit
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/collada_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/collada_utils.cpp b/source/blender/collada/collada_utils.cpp
index d669487db28..e71078a0bae 100644
--- a/source/blender/collada/collada_utils.cpp
+++ b/source/blender/collada/collada_utils.cpp
@@ -358,7 +358,7 @@ void bc_triangulate_mesh(Mesh *me)
BMesh *bm = BM_mesh_create(&bm_mesh_allocsize_default);
BM_mesh_bm_from_me(bm, me, true, false, 0);
- BM_mesh_triangulate(bm, quad_method, use_beauty, tag_only, NULL, NULL);
+ BM_mesh_triangulate(bm, quad_method, use_beauty, tag_only, NULL, NULL, NULL);
BM_mesh_bm_to_me(bm, me, false);
BM_mesh_free(bm);