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:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-04 15:35:56 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-04 15:35:56 +0300
commit48954596d109d606679ea08d54098dd269c42280 (patch)
tree4af987277f4f6ac54e772764663bca2d89d337bc /source/blender/blenkernel/intern/sequencer.c
parentbecce5428610da422228d9c299ace9b28f5a00be (diff)
Disable sequencer preprocess cache if 314 debug value is set
Diffstat (limited to 'source/blender/blenkernel/intern/sequencer.c')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 6bca0a04012..d3977a6436d 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -2934,7 +2934,9 @@ static ImBuf *seq_render_strip(const SeqRenderData *context, Sequence *seq, floa
ibuf = copy_from_ibuf_still(context, seq, nr);
if (ibuf == NULL) {
- ibuf = BKE_sequencer_preprocessed_cache_get(context, seq, cfra, SEQ_STRIPELEM_IBUF);
+ /* disable caching in that case */
+ if (G.debug_value != 314)
+ ibuf = BKE_sequencer_preprocessed_cache_get(context, seq, cfra, SEQ_STRIPELEM_IBUF);
if (ibuf == NULL) {
/* MOVIECLIPs have their own proxy management */