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:
authorPeter Schlaile <peter@schlaile.de>2008-01-03 00:36:51 +0300
committerPeter Schlaile <peter@schlaile.de>2008-01-03 00:36:51 +0300
commitf081a56ebc3f5f6d905d0c91431f5daa8ece5260 (patch)
treec46f0bd334bedc0535f9dcd7d65d35945fb4d39b /source/blender/src/sequence.c
parent861d5e57a5ac1d803ca80f5cd1b361fb03e90410 (diff)
== Sequencer ==
Bugfix: fixes crash if lowest strip was in blend mode "ALPHA OVER" (combined with other blends above)
Diffstat (limited to 'source/blender/src/sequence.c')
-rw-r--r--source/blender/src/sequence.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/src/sequence.c b/source/blender/src/sequence.c
index 88766089317..f3a42f3eb72 100644
--- a/source/blender/src/sequence.c
+++ b/source/blender/src/sequence.c
@@ -1543,6 +1543,10 @@ static TStripElem* do_build_seq_array_recursively(
(short)seqrectx, (short)seqrecty,
32, IB_rect, 0);
}
+ if (i == 0) {
+ se->ibuf_comp = se->ibuf;
+ IMB_refImBuf(se->ibuf_comp);
+ }
break;
}