From 2e73a5e69f0227f15c6049ef805a9b8c20166e2b Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Wed, 21 Jul 2004 14:38:29 +0000 Subject: new goom2k4-dev18 includes almost all of my warning fixes (the goom team is quite fast in applying my patches :) ) some files are still slightly patched from the release version, but I will get this sorted out so we will soon use a completely unmodified version of goom it compiles almost warningless now (the remaining warnings are introduced by lex/yacc and I plan to simply ignore them) the Makefile.am distclean-hack is also obsolete now, since the offending files have been renamed CVS patchset: 6828 CVS date: 2004/07/21 14:38:29 --- src/post/goom/ifs.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/post/goom/ifs.c') diff --git a/src/post/goom/ifs.c b/src/post/goom/ifs.c index a955b95d2..901bf7348 100644 --- a/src/post/goom/ifs.c +++ b/src/post/goom/ifs.c @@ -201,7 +201,7 @@ free_ifs (FRACTAL * Fractal) /***************************************************************/ -void +static void init_ifs (PluginInfo *goomInfo, IfsData *data) { int i; @@ -376,7 +376,7 @@ Draw_Fractal (IfsData *data) } -IFSPoint * +static IFSPoint * draw_ifs (PluginInfo *goomInfo, int *nbpt, IfsData *data) { int i; @@ -724,7 +724,7 @@ static void ifs_update (PluginInfo *goomInfo, Pixel * data, Pixel * back, int in /** VISUAL_FX WRAPPER FOR IFS */ -void ifs_vfx_apply(VisualFX *_this, Pixel *src, Pixel *dest, PluginInfo *goomInfo) { +static void ifs_vfx_apply(VisualFX *_this, Pixel *src, Pixel *dest, PluginInfo *goomInfo) { IfsData *data = (IfsData*)_this->fx_data; if (!data->initalized) { @@ -735,7 +735,7 @@ void ifs_vfx_apply(VisualFX *_this, Pixel *src, Pixel *dest, PluginInfo *goomInf /*TODO: trouver meilleur soluce pour increment (mettre le code de gestion de l'ifs dans ce fichier: ifs_vfx_apply) */ } -void ifs_vfx_init(VisualFX *_this) { +static void ifs_vfx_init(VisualFX *_this) { IfsData *data = (IfsData*)malloc(sizeof(IfsData)); data->Root = (FRACTAL*)NULL; @@ -743,13 +743,13 @@ void ifs_vfx_init(VisualFX *_this) { _this->fx_data = data; } -void ifs_vfx_free(VisualFX *_this) { +static void ifs_vfx_free(VisualFX *_this) { IfsData *data = (IfsData*)_this->fx_data; release_ifs(data); free(data); } -VisualFX ifs_visualfx_create() { +VisualFX ifs_visualfx_create(void) { VisualFX vfx; vfx.init = ifs_vfx_init; vfx.free = ifs_vfx_free; -- cgit v1.2.3