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:
authorDalai Felinto <dfelinto@gmail.com>2018-05-07 22:30:29 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-05-07 22:30:29 +0300
commite4c4e8566fdcf4b9c81a09d9559d358a9550d015 (patch)
tree5ca46a02080a037d71f5cd56eae1370567eb823d
parent3299b0f0dcaa53281bd3bdda5e4b77955956b317 (diff)
Multi Object Smooth shading by Ethan Brierley
With small changes by Dalai Felinto. Differential Revision: https://developer.blender.org/D3213
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 90bd6bed47e..bb54cd21244 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -2240,12 +2240,21 @@ static void mesh_set_smooth_faces(BMEditMesh *em, short smooth)
static int edbm_faces_shade_smooth_exec(bContext *C, wmOperator *UNUSED(op))
{
- Object *obedit = CTX_data_edit_object(C);
- BMEditMesh *em = BKE_editmesh_from_object(obedit);
+ ViewLayer * view_layer = CTX_data_view_layer(C);
+ uint objects_len = 0;
+ Object * *objects = BKE_view_layer_array_from_objects_in_edit_mode_unique_data(view_layer, &objects_len);
+ for (uint ob_index = 0; ob_index < objects_len; ob_index++) {
+ Object * obedit = objects[ob_index];
+ BMEditMesh * em = BKE_editmesh_from_object(obedit);
- mesh_set_smooth_faces(em, 1);
+ if (em->bm->totfacesel == 0) {
+ continue;
+ }
- EDBM_update_generic(em, false, false);
+ mesh_set_smooth_faces(em, 1);
+ EDBM_update_generic(em, false, false);
+ }
+ MEM_freeN(objects);
return OPERATOR_FINISHED;
}