summaryrefslogtreecommitdiff
path: root/src/post/goom/ifs.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-06-27 11:58:47 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-06-27 11:58:47 +0000
commit90f730ca714fb53f47ee16be46fcb06bd98d53ed (patch)
treec028f9afa30ec4137501fdada9c6ef1130daf2fb /src/post/goom/ifs.h
parent29f04d913513a470bc91aff3e6c0fca699e460f8 (diff)
downloadxine-lib-90f730ca714fb53f47ee16be46fcb06bd98d53ed.tar.gz
xine-lib-90f730ca714fb53f47ee16be46fcb06bd98d53ed.tar.bz2
include the new goom version 2k4-dev15
everybody: test, test, test CVS patchset: 6756 CVS date: 2004/06/27 11:58:47
Diffstat (limited to 'src/post/goom/ifs.h')
-rw-r--r--src/post/goom/ifs.h32
1 files changed, 12 insertions, 20 deletions
diff --git a/src/post/goom/ifs.h b/src/post/goom/ifs.h
index 6ab2af057..909838bd3 100644
--- a/src/post/goom/ifs.h
+++ b/src/post/goom/ifs.h
@@ -6,30 +6,22 @@
#define IFS_H
#include "goom_config.h"
+#include "goom_graphic.h"
+#include "goom_plugin_info.h"
+#include "goom_visual_fx.h"
-typedef struct _ifsPoint
-{
- gint32 x, y;
-}
-IFSPoint;
+VisualFX ifs_visualfx_create();
-// init ifs for a (width)x(height) output.
-void init_ifs (int width, int height);
+/* init ifs for a (width)x(height) output. * /
+void init_ifs (PluginInfo *goomInfo, int width, int height);
-// draw an ifs on the buffer (which size is width * height)
-// increment means that we draw 1/increment of the ifs's points
-void ifs_update (guint32 * buffer, guint32 * back, int width, int height,
- int increment);
+/ * draw an ifs on the buffer (which size is width * height)
+ increment means that we draw 1/increment of the ifs's points * /
+void ifs_update (PluginInfo *goomInfo, Pixel * buffer, Pixel * back, int width, int height, int increment);
-// free all ifs's data.
-void release_ifs (void);
-
-
-/* DONT USE !!! deprecated
- * return a an array of points.
- * WARNING !!! do not free it !!! it also has an internal use..
- */
-IFSPoint *draw_ifs (int *nbPoints);
+/ * free all ifs's data. * /
+void release_ifs ();
+*/
#endif