From 7b5acc80091d8d92869d83f1308f5af24b45ce9a Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 13 Aug 2021 08:34:10 +0200 Subject: Cleanup: remove unused draw_gpencil_channel. Code is integrated with draw_scene_channel since 2.80. --- source/blender/editors/animation/keyframes_draw.c | 14 -------------- source/blender/editors/include/ED_keyframes_draw.h | 7 ------- 2 files changed, 21 deletions(-) diff --git a/source/blender/editors/animation/keyframes_draw.c b/source/blender/editors/animation/keyframes_draw.c index d25f81005c5..5407e04af12 100644 --- a/source/blender/editors/animation/keyframes_draw.c +++ b/source/blender/editors/animation/keyframes_draw.c @@ -685,20 +685,6 @@ void draw_action_channel(AnimKeylistDrawList *draw_list, draw_elem->channel_locked = locked; } -void draw_gpencil_channel( - View2D *v2d, bDopeSheet *ads, bGPdata *gpd, float ypos, float yscale_fac, int saction_flag) -{ - struct AnimKeylist *keylist = ED_keylist_create(); - - saction_flag &= ~SACTION_SHOW_EXTREMES; - - gpencil_to_keylist(ads, gpd, keylist, false); - - draw_keylist(v2d, keylist, ypos, yscale_fac, false, saction_flag); - - ED_keylist_free(keylist); -} - void draw_gpl_channel(AnimKeylistDrawList *draw_list, bDopeSheet *ads, bGPDlayer *gpl, diff --git a/source/blender/editors/include/ED_keyframes_draw.h b/source/blender/editors/include/ED_keyframes_draw.h index c9bbf58ff7a..50823045936 100644 --- a/source/blender/editors/include/ED_keyframes_draw.h +++ b/source/blender/editors/include/ED_keyframes_draw.h @@ -102,13 +102,6 @@ void draw_summary_channel(struct AnimKeylistDrawList *draw_list, float ypos, float yscale_fac, int saction_flag); -/* Grease Pencil datablock summary */ -void draw_gpencil_channel(struct View2D *v2d, - struct bDopeSheet *ads, - struct bGPdata *gpd, - float ypos, - float yscale_fac, - int saction_flag); /* Grease Pencil Layer */ void draw_gpl_channel(struct AnimKeylistDrawList *draw_list, struct bDopeSheet *ads, -- cgit v1.2.3