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:
authorKent Mein <mein@cs.umn.edu>2003-05-03 00:52:58 +0400
committerKent Mein <mein@cs.umn.edu>2003-05-03 00:52:58 +0400
commit3b14d730d9b16be01e696d8631c4b5dfb7201b8f (patch)
tree630a13d6752a7d74371c4262e19d5721c32655f4 /release/plugins
parent0aaa02e6b585e71f8a4ea9dfd9f37bc6ab1725b9 (diff)
Updated the scatter program to fix some warnings.
Modified the Makefile's call to strip so it leaves symbols for plugins... Kent
Diffstat (limited to 'release/plugins')
-rw-r--r--release/plugins/sequence/scatter.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/plugins/sequence/scatter.c b/release/plugins/sequence/scatter.c
index cba8aeab5a8..b61b53c1a85 100644
--- a/release/plugins/sequence/scatter.c
+++ b/release/plugins/sequence/scatter.c
@@ -184,7 +184,7 @@ void plugin_seq_doit(Cast *cast, float facf0, float facf1, int sx, int sy, ImBuf
int x, y, lr;
/* fill imbuf 'out' with black */
- rectop(out, 0,0,0,0,0,32767,32767,rectfill, 0);
+ ibufrectop(out, ibuf1,0,0,0,0,32767,32767,rectfill, 0);
switch (cast->type) {
case 0:
@@ -223,12 +223,12 @@ void plugin_seq_doit(Cast *cast, float facf0, float facf1, int sx, int sy, ImBuf
break;
}
- rectop(out, ibuf1, 0, y, x, y, 32767, 1, rectcpy, 0);
+ ibufrectop(out, ibuf1, 0, y, x, y, 32767, 1, rectcpy, 0);
if (cast->wrap) {
- rectop(out, ibuf1, 0, y, x + sx, y, 32767, 1, rectcpy, 0);
- rectop(out, ibuf1, 0, y, x + sx + sx, y, 32767, 1, rectcpy, 0);
- rectop(out, ibuf1, 0, y, x - sx, y, 32767, 1, rectcpy, 0);
- rectop(out, ibuf1, 0, y, x - sx - sx, y, 32767, 1, rectcpy, 0);
+ ibufrectop(out, ibuf1, 0, y, x + sx, y, 32767, 1, rectcpy, 0);
+ ibufrectop(out, ibuf1, 0, y, x + sx + sx, y, 32767, 1, rectcpy, 0);
+ ibufrectop(out, ibuf1, 0, y, x - sx, y, 32767, 1, rectcpy, 0);
+ ibufrectop(out, ibuf1, 0, y, x - sx - sx, y, 32767, 1, rectcpy, 0);
}
}
}