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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-11 03:34:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-11 03:34:40 +0400
commit4a43099c5a61f302654b7f309572505894357227 (patch)
tree7863c7e2fd9a52d456ccb0b92f816d6f2e769729 /source/blender/src/sequence.c
parent5f6d775e0c9247d2f5979670037ca5468ee67b40 (diff)
Peach request
new option for the image sequencer's image strips, flip x/y, (useful when making animatics to test the direction characters walk across the screen) added IMB_flipy was alredy there, needed to add IMB_flipx.
Diffstat (limited to 'source/blender/src/sequence.c')
-rw-r--r--source/blender/src/sequence.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/sequence.c b/source/blender/src/sequence.c
index e55cea7de59..f9ad78dc732 100644
--- a/source/blender/src/sequence.c
+++ b/source/blender/src/sequence.c
@@ -779,6 +779,8 @@ static void do_build_seq_ibuf(Sequence * seq, int cfra)
seq->strip->orx= se->ibuf->x;
seq->strip->ory= se->ibuf->y;
if(seq->flag & SEQ_FILTERY) IMB_filtery(se->ibuf);
+ if(seq->flag & SEQ_FLIPX) IMB_flipx(se->ibuf);
+ if(seq->flag & SEQ_FLIPY) IMB_flipy(se->ibuf);
if(seq->mul==0.0) seq->mul= 1.0;
if(seq->mul != 1.0) multibuf(se->ibuf, seq->mul);
}