From c31b578d7709b51028218805d3857986a36b4eb9 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Wed, 30 Apr 2003 18:38:50 +0000 Subject: Added IMB_gamwarp and IMB_interlace (and the interlace and gamwarp wrappers for the plugins) Kent --- source/blender/blenpluginapi/intern/pluginapi.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source/blender/blenpluginapi') 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; } -- cgit v1.2.3