[Bf-blender-cvs] [abebb276448] master: DRW: Select Engine: remove unnecessary DRWShadingGroup creations

mano-wii noreply at git.blender.org
Fri Aug 2 04:00:52 CEST 2019


Commit: abebb27644813c8ccda6555c6cdd8b60b58a0930
Author: mano-wii
Date:   Thu Aug 1 22:24:07 2019 -0300
Branches: master
https://developer.blender.org/rBabebb27644813c8ccda6555c6cdd8b60b58a0930

DRW: Select Engine: remove unnecessary DRWShadingGroup creations

===================================================================

M	source/blender/draw/engines/select/select_draw_utils.c

===================================================================

diff --git a/source/blender/draw/engines/select/select_draw_utils.c b/source/blender/draw/engines/select/select_draw_utils.c
index 08c6c2ac865..2da61c835d8 100644
--- a/source/blender/draw/engines/select/select_draw_utils.c
+++ b/source/blender/draw/engines/select/select_draw_utils.c
@@ -84,9 +84,8 @@ static void draw_select_id_edit_mesh(SELECTID_StorageList *stl,
     *r_face_offset = initial_offset + em->bm->totface;
   }
   else {
-    face_shgrp = DRW_shgroup_create_sub(stl->g_data->shgrp_face_unif);
+    face_shgrp = stl->g_data->shgrp_face_unif;
     DRW_shgroup_uniform_int_copy(face_shgrp, "id", 0);
-
     *r_face_offset = initial_offset;
   }
   DRW_shgroup_call(face_shgrp, geom_faces, ob);
@@ -137,7 +136,7 @@ static void draw_select_id_mesh(SELECTID_StorageList *stl,
   }
   else {
     /* Only draw faces to mask out verts, we don't want their selection ID's. */
-    face_shgrp = DRW_shgroup_create_sub(stl->g_data->shgrp_face_unif);
+    face_shgrp = stl->g_data->shgrp_face_unif;
     DRW_shgroup_uniform_int_copy(face_shgrp, "id", 0);
     *r_face_offset = initial_offset;
   }



More information about the Bf-blender-cvs mailing list