[Bf-blender-cvs] [d4133b22272] temp-lineart-contained: GPencil: Fix compiler warning, unused variable

Falk David noreply at git.blender.org
Sat Dec 19 06:18:54 CET 2020


Commit: d4133b22272ce0e2b8907ec2e89ac47a21ad2049
Author: Falk David
Date:   Fri Nov 13 22:31:58 2020 +0100
Branches: temp-lineart-contained
https://developer.blender.org/rBd4133b22272ce0e2b8907ec2e89ac47a21ad2049

GPencil: Fix compiler warning, unused variable

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

M	source/blender/draw/intern/draw_cache_impl_gpencil.c

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

diff --git a/source/blender/draw/intern/draw_cache_impl_gpencil.c b/source/blender/draw/intern/draw_cache_impl_gpencil.c
index 0a80f7df877..81208b2f3bf 100644
--- a/source/blender/draw/intern/draw_cache_impl_gpencil.c
+++ b/source/blender/draw/intern/draw_cache_impl_gpencil.c
@@ -771,10 +771,7 @@ static char gpencil_beztriple_vflag_get(char flag,
   return vflag;
 }
 
-static void gpencil_edit_curve_stroke_iter_cb(bGPDlayer *gpl,
-                                              bGPDframe *gpf,
-                                              bGPDstroke *gps,
-                                              void *thunk)
+static void gpencil_edit_curve_stroke_iter_cb(bGPDlayer *gpl, bGPDstroke *gps, void *thunk)
 {
   if (gpl->flag & GP_LAYER_LOCKED) {
     return;



More information about the Bf-blender-cvs mailing list