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-02 11:17:25 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-03 16:50:40 +0300
commit4eedf784b0421727bc1ef2bdf3b65294eedea050 (patch)
tree32c433631a301e52f02f4dbbd8283ff1cae9abb6 /source/blender/makesdna/DNA_sequence_types.h
parent6990ef151c199761da1eb1777ff384835bb7ba20 (diff)
Depsgraph: Store original sequencer strip pointer
Allows to identify where the strip came from.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index c21fa2ba64e..5240de4aff9 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -232,6 +232,9 @@ typedef struct Sequence {
int cache_flag;
int _pad2[3];
+
+ struct Sequence *orig_sequence;
+ void *_pad3;
} Sequence;
typedef struct MetaStack {