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:
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index fb941a61ae8..c275c8187e4 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -276,6 +276,9 @@ typedef struct Editing {
int cache_flag;
struct PrefetchJob *prefetch_job;
+
+ /* Must be initialized only by BKE_sequencer_cache_create() */
+ int64_t disk_cache_timestamp;
} Editing;
/* ************* Effect Variable Structs ********* */
@@ -682,6 +685,7 @@ enum {
SEQ_CACHE_VIEW_FINAL_OUT = (1 << 9),
SEQ_CACHE_PREFETCH_ENABLE = (1 << 10),
+ SEQ_CACHE_DISK_CACHE_ENABLE = (1 << 11),
};
#ifdef __cplusplus