fab0426683177cd994b566feab0488b5d9232a83
[platform/upstream/gst-plugins-good.git] / gst / goom / ifs.h
1 /*
2  * File created 11 april 2002 by JeKo <jeko@free.fr>
3  */
4
5 #ifndef IFS_H
6 #define IFS_H
7
8 #include "goom_config.h"
9 #include "goom_graphic.h"
10 #include "goom_plugin_info.h"
11 #include "goom_visual_fx.h"
12
13 VisualFX ifs_visualfx_create(void);
14
15 /* init ifs for a (width)x(height) output. * /
16 void init_ifs (PluginInfo *goomInfo, int width, int height);
17
18 / * draw an ifs on the buffer (which size is width * height)
19    increment means that we draw 1/increment of the ifs's points * /
20 void ifs_update (PluginInfo *goomInfo, Pixel * buffer, Pixel * back, int width, int height, int increment);
21
22 / * free all ifs's data. * /
23 void release_ifs (void);
24 */
25
26
27 #endif