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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-05-01 13:10:32 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-03 16:50:40 +0300
commite8f10d6475765685acee21ca5e8d48f568ee2031 (patch)
tree18c22ab179ba5af29c621935c22b1d23700602ab /source/blender/makesdna/DNA_ID.h
parent6e4b7a6e4d96d60f92251abc7a5ff85fe0ba2fb8 (diff)
Depsgraph: Tag sequencer for update on changes
Currently only adding, removing and transforming strips. Most likely more tags is needed.
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 5a666653043..12f59cf8e78 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -604,6 +604,10 @@ typedef enum IDRecalcFlag {
*/
ID_RECALC_COPY_ON_WRITE = (1 << 13),
+ /* Sequences in the sequencer did change.
+ * Use this tag with a scene ID which owns the sequences. */
+ ID_RECALC_SEQUENCER = (1 << 14),
+
/***************************************************************************
* Pseudonyms, to have more semantic meaning in the actual code without
* using too much low-level and implementation specific tags. */