diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-12-25 22:24:38 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-12-25 22:24:38 +0000 |
commit | 50995cd8f35202c609bc83f7f2709fe412fa7c60 (patch) | |
tree | 382ba1f0ec78ff51da35f0aa80d9ceca4bdaf53b /src/post/goom/ifs.h | |
parent | 35cf5c7af637d1af61cd2a1029cf15e8c8ffa561 (diff) | |
download | xine-lib-50995cd8f35202c609bc83f7f2709fe412fa7c60.tar.gz xine-lib-50995cd8f35202c609bc83f7f2709fe412fa7c60.tar.bz2 |
made it compile
CVS patchset: 3682
CVS date: 2002/12/25 22:24:38
Diffstat (limited to 'src/post/goom/ifs.h')
-rw-r--r-- | src/post/goom/ifs.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/post/goom/ifs.h b/src/post/goom/ifs.h index a5e9fdeec..0b3cca3aa 100644 --- a/src/post/goom/ifs.h +++ b/src/post/goom/ifs.h @@ -11,14 +11,16 @@ typedef struct _ifsPoint { gint16 x,y; } IFSPoint; -// init ifs for a (width)x(height) output. +/* init ifs for a (width)x(height) output. */ void init_ifs (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 +/* + * 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); -// free all ifs's data. +/* free all ifs's data. */ void release_ifs (); |