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-04-30 22:38:50 +0400
committerKent Mein <mein@cs.umn.edu>2003-04-30 22:38:50 +0400
commitc31b578d7709b51028218805d3857986a36b4eb9 (patch)
tree19731231b53a98c3031da7aecd2968dd95bcb0a1 /source/blender/blenpluginapi
parentabd2a37f8a07f9dfe440ff6760ccbf2bd43d38bc (diff)
Added IMB_gamwarp and IMB_interlace (and the interlace and gamwarp wrappers
for the plugins) Kent
Diffstat (limited to 'source/blender/blenpluginapi')
-rw-r--r--source/blender/blenpluginapi/intern/pluginapi.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/blenpluginapi/intern/pluginapi.c b/source/blender/blenpluginapi/intern/pluginapi.c
index 889c50fe0dc..c9cbc72ca60 100644
--- a/source/blender/blenpluginapi/intern/pluginapi.c
+++ b/source/blender/blenpluginapi/intern/pluginapi.c
@@ -234,6 +234,16 @@ struct ImBuf *scalefastfieldImBuf(struct ImBuf *ib,
/* Extra ones that some NaN (read Ton) plugins use,
* even though they aren't in the header
*/
+
+void interlace(struct ImBuf *ibuf)
+{
+ IMB_interlace(ibuf);
+}
+
+void gamwarp(struct ImBuf *ibuf, double gamma)
+{
+ IMB_gamwarp(ibuf,gamma);
+}
void de_interlace(struct ImBuf *ib)
{
@@ -341,5 +351,7 @@ int pluginapi_force_ref(void)
(int) turbulence +
(int) turbulence1 +
(int) de_interlace +
+ (int) interlace +
+ (int) gamwarp +
(int) rectop;
}