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>2020-11-17 16:27:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-17 16:27:36 +0300
commit9d716b929de4322aea76b1bc2d5fa207c4ec1b5e (patch)
tree59689af24d245c32d7c9d9a63635eed41e896e0e /source/blender/bmesh/operators
parent90e516d1a519684cc8b41f2328ebc97a1b71e86d (diff)
parenta993600323867211f45f636058f20b66f144c34b (diff)
Merge branch 'blender-v2.91-release'
Diffstat (limited to 'source/blender/bmesh/operators')
-rw-r--r--source/blender/bmesh/operators/bmo_normals.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_normals.c b/source/blender/bmesh/operators/bmo_normals.c
index 93a377ac2ca..8e7bfbb649d 100644
--- a/source/blender/bmesh/operators/bmo_normals.c
+++ b/source/blender/bmesh/operators/bmo_normals.c
@@ -272,7 +272,7 @@ void bmo_recalc_face_normals_exec(BMesh *bm, BMOperator *op)
int(*group_index)[2];
const int group_tot = BM_mesh_calc_face_groups(
- bm, groups_array, &group_index, bmo_recalc_normal_loop_filter_cb, NULL, 0, BM_EDGE);
+ bm, groups_array, &group_index, bmo_recalc_normal_loop_filter_cb, NULL, NULL, 0, BM_EDGE);
int i;
BMO_slot_buffer_flag_enable(bm, op->slots_in, "faces", BM_FACE, FACE_FLAG);