Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-05-07 11:36:27 +0300
committerJacques Lucke <jacques@blender.org>2021-05-07 11:36:27 +0300
commit619b015a46786a4f4057b0dd4d20d27b61d13c0f (patch)
treebc6c5701becc47ae77e40e4f6c77365c06f2458c /source/blender/sequencer/SEQ_utils.h
parentab200c6eddc6494b5d95c98966969b2001d6db89 (diff)
parent42e350b9a5fc32940b05fce4115ed76898862604 (diff)
Merge branch 'master' into profiler-editor
Diffstat (limited to 'source/blender/sequencer/SEQ_utils.h')
-rw-r--r--source/blender/sequencer/SEQ_utils.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/sequencer/SEQ_utils.h b/source/blender/sequencer/SEQ_utils.h
index 45f53a64688..52fac5d7d0e 100644
--- a/source/blender/sequencer/SEQ_utils.h
+++ b/source/blender/sequencer/SEQ_utils.h
@@ -54,7 +54,12 @@ void SEQ_set_scale_to_fit(const struct Sequence *seq,
const int preview_width,
const int preview_height,
const eSeqImageFitMethod fit_method);
-
+int SEQ_seqbase_recursive_apply(struct ListBase *seqbase,
+ int (*apply_fn)(struct Sequence *seq, void *),
+ void *arg);
+int SEQ_recursive_apply(struct Sequence *seq,
+ int (*apply_fn)(struct Sequence *, void *),
+ void *arg);
#ifdef __cplusplus
}
#endif