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-01 20:34:14 +0400
committerKent Mein <mein@cs.umn.edu>2003-05-01 20:34:14 +0400
commit19320c020cb89e45aa9179f5e89a51b8a44a3c16 (patch)
tree18f3fabee0da7c45497094085123ba9c6f25428e /source/blender/blenpluginapi
parent43cc33ac59675080c307e1abf6488000b2ee93ff (diff)
The stuff in release/plugins/include was duplcated in
source/blender/blenpluginapi So I removed the stuff in the release dir after merging changes and updated the Makefile. Kent
Diffstat (limited to 'source/blender/blenpluginapi')
-rw-r--r--source/blender/blenpluginapi/iff.h29
1 files changed, 18 insertions, 11 deletions
diff --git a/source/blender/blenpluginapi/iff.h b/source/blender/blenpluginapi/iff.h
index a9c02c1020c..8e97f2d4b3d 100644
--- a/source/blender/blenpluginapi/iff.h
+++ b/source/blender/blenpluginapi/iff.h
@@ -169,18 +169,25 @@ extern struct ImBuf *scalefastImBuf(struct ImBuf *, short, short);
extern struct ImBuf *scalefieldImBuf(struct ImBuf *, short, short);
extern struct ImBuf *scalefastfieldImBuf(struct ImBuf *, short, short);
-extern void de_interlace(struct ImBuf *ib);
+/* Not sure if needed or not... was in the release version of this header.
+I think its old but figured I'd leave it for a bit just incase.
+mein@cs.umn.edu
+extern void floyd(struct ImBuf *, short, short);
+extern void dit3(struct ImBuf *, short, short);
+extern void dit4(struct ImBuf *, short, short);
+extern void (*ditherfunc)(struct ImBuf *, short, short);
+extern long getdither();
+*/
-extern void rectop(struct ImBuf *dbuf,
- struct ImBuf *sbuf,
- int destx,
- int desty,
- int srcx,
- int srcy,
- int width,
- int height,
- void (*operation)(unsigned int *, unsigned int*, int, int),
- int value);
+extern void de_interlace(struct ImBuf *ib);
+extern void interlace(struct ImBuf *ib);
+extern void gamwarp(struct ImBuf *ibuf, double gamma);
+
+extern void rectop(struct ImBuf *dbuf, struct ImBuf *sbuf,
+ int destx, int desty, int srcx,
+ int srcy, int width, int height,
+ void (*operation)(unsigned int *, unsigned int*, int, int),
+ int value);
#endif /* IFF_H */