[Bf-blender-cvs] [f2c896a9ad1] master: GPencil: Simplify code removing extra function

Antonio Vazquez noreply at git.blender.org
Mon Oct 4 17:08:31 CEST 2021


Commit: f2c896a9ad171e20dc291b60ed4c96a4e6a9456f
Author: Antonio Vazquez
Date:   Mon Oct 4 17:08:00 2021 +0200
Branches: master
https://developer.blender.org/rBf2c896a9ad171e20dc291b60ed4c96a4e6a9456f

GPencil: Simplify code removing extra function

The function was not doing anything and only was calling another function.

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

M	source/blender/editors/gpencil/gpencil_paint.c

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

diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index bf49203f915..ffc50a86fc6 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -281,14 +281,6 @@ static void gpencil_update_cache(bGPdata *gpd)
   }
 }
 
-static void gpencil_stroke_added_enable(tGPsdata *p)
-{
-  BLI_assert(p->gpf->strokes.last != NULL);
-
-  /* drawing batch cache is dirty now */
-  gpencil_update_cache(p->gpd);
-}
-
 /* ------ */
 /* Forward defines for some functions... */
 
@@ -1322,7 +1314,7 @@ static void gpencil_stroke_newfrombuffer(tGPsdata *p)
     BKE_gpencil_stroke_copy_to_keyframes(gpd, gpl, p->gpf, gps, tail);
   }
 
-  gpencil_stroke_added_enable(p);
+  gpencil_update_cache(p->gpd);
 }
 
 /* --- 'Eraser' for 'Paint' Tool ------ */



More information about the Bf-blender-cvs mailing list