From abebb27644813c8ccda6555c6cdd8b60b58a0930 Mon Sep 17 00:00:00 2001 From: mano-wii Date: Thu, 1 Aug 2019 22:24:07 -0300 Subject: DRW: Select Engine: remove unnecessary DRWShadingGroup creations --- source/blender/draw/engines/select/select_draw_utils.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source') 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; } -- cgit v1.2.3