[Bf-blender-cvs] [ca73883e198] blender2.8: Cleanup: Remove unused field

Antonioya noreply at git.blender.org
Fri Aug 31 09:54:43 CEST 2018


Commit: ca73883e1985ea85db4dc50da1620f247b735c03
Author: Antonioya
Date:   Fri Aug 31 09:54:35 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBca73883e1985ea85db4dc50da1620f247b735c03

Cleanup: Remove unused field

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

M	source/blender/draw/engines/gpencil/gpencil_draw_utils.c

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

diff --git a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
index 2dce51fc0ad..29544a601d5 100644
--- a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
+++ b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
@@ -552,7 +552,7 @@ static DRWShadingGroup *DRW_gpencil_shgroup_point_create(
 /* add fill shading group to pass */
 static void gpencil_add_fill_shgroup(
         GpencilBatchCache *cache, DRWShadingGroup *fillgrp,
-        Object *ob, bGPDlayer *UNUSED(gpl), bGPDframe *gpf, bGPDstroke *gps,
+        Object *ob, bGPDframe *gpf, bGPDstroke *gps,
         float opacity, const float tintcolor[4], const bool onion, const bool custonion)
 {
 	MaterialGPencilStyle *gp_style = BKE_material_gpencil_settings_get(ob, gps->mat_nr + 1);
@@ -865,7 +865,7 @@ static void gpencil_draw_strokes(
 			/* fill */
 			if ((fillgrp) && (!stl->storage->simplify_fill)) {
 				gpencil_add_fill_shgroup(
-				        cache, fillgrp, ob, gpl, derived_gpf, gps,
+				        cache, fillgrp, ob, derived_gpf, gps,
 						opacity, tintcolor, false, custonion);
 			}
 			/* stroke */



More information about the Bf-blender-cvs mailing list