From 2115232a16d81d28dbdb8042ed8e9316858514c6 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Fri, 4 Sep 2020 20:59:13 +0200 Subject: Cleanup: Clang-Tidy readability-inconsistent-declaration-parameter-name fix No functional changes --- source/blender/blenkernel/BKE_sequencer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenkernel/BKE_sequencer.h') diff --git a/source/blender/blenkernel/BKE_sequencer.h b/source/blender/blenkernel/BKE_sequencer.h index fd881175872..04be46f0ccf 100644 --- a/source/blender/blenkernel/BKE_sequencer.h +++ b/source/blender/blenkernel/BKE_sequencer.h @@ -263,10 +263,10 @@ struct Mask *BKE_sequencer_mask_get(struct Scene *scene); /* apply functions recursively */ int BKE_sequencer_base_recursive_apply(struct ListBase *seqbase, - int (*apply_func)(struct Sequence *seq, void *), + int (*apply_fn)(struct Sequence *seq, void *), void *arg); int BKE_sequencer_recursive_apply(struct Sequence *seq, - int (*apply_func)(struct Sequence *, void *), + int (*apply_fn)(struct Sequence *, void *), void *arg); /* maintenance functions, mostly for RNA */ @@ -319,7 +319,7 @@ bool BKE_sequencer_proxy_rebuild_context(struct Main *bmain, void BKE_sequencer_proxy_rebuild(struct SeqIndexBuildContext *context, short *stop, short *do_update, - float *num_frames_prefetched); + float *progress); void BKE_sequencer_proxy_rebuild_finish(struct SeqIndexBuildContext *context, bool stop); void BKE_sequencer_proxy_set(struct Sequence *seq, bool value); @@ -340,7 +340,7 @@ void BKE_sequencer_cache_put(const SeqRenderData *context, struct Sequence *seq, float cfra, int type, - struct ImBuf *nval, + struct ImBuf *i, float cost, bool skip_disk_cache); bool BKE_sequencer_cache_put_if_possible(const SeqRenderData *context, -- cgit v1.2.3