diff --git a/Fonderie/crapulator.c b/Fonderie/crapulator.c index 26603f5..ec837ea 100644 --- a/Fonderie/crapulator.c +++ b/Fonderie/crapulator.c @@ -30,7 +30,7 @@ if (foo) { return foo; } -incrustation_0(pimg, ©, 0); +incrustation_vignette(pimg, ©, 0); fimg_copy_data(©, pimg); diff --git a/Fonderie/sfx.c b/Fonderie/sfx.c index 17c3060..3edb2ed 100644 --- a/Fonderie/sfx.c +++ b/Fonderie/sfx.c @@ -24,7 +24,7 @@ extern int verbosity; /* * please, add some parameters ! */ -int incrustation_0(FloatImg *src, FloatImg *dst, int k) +int incrustation_vignette(FloatImg *src, FloatImg *dst, int k) { int x, y, x4, y4; float rgb[3]; diff --git a/Fonderie/sfx.h b/Fonderie/sfx.h index 69e8e5b..1aa734e 100644 --- a/Fonderie/sfx.h +++ b/Fonderie/sfx.h @@ -3,7 +3,7 @@ * --------------------------------------------------- */ -int incrustation_0(FloatImg *src, FloatImg *dst, int k); +int incrustation_vignette(FloatImg *src, FloatImg *dst, int k); int trinitron(FloatImg *pimg, int notused); diff --git a/Fonderie/t.c b/Fonderie/t.c index 13898f7..8d45b2c 100644 --- a/Fonderie/t.c +++ b/Fonderie/t.c @@ -176,7 +176,7 @@ if (foo) { foo = fimg_clone(&image, &dest, 1); foo = fimg_copy_data(&image, &dest); -incrustation_0(&image, &dest, 0); +incrustation_vignette(&image, &dest, 0); fimg_export_picture(&dest, "foo.png", 0);