changing host

This commit is contained in:
tTh 2022-05-30 21:38:29 +02:00
parent e224ab83b6
commit f63f918530
2 changed files with 6 additions and 3 deletions

View File

@ -21,11 +21,11 @@ int fimg_falsecolors_0(FloatImg *src, FloatImg *dst, int k, float valf)
{
int x, y;
fprintf(stderr, ">>> %s ( %p %p %d %f )\n", __func__,
fprintf(stderr, ">>> %s ( %p %p %d %f )\n", __func__,
src, dst, k, valf);
for (y=0; y<src->height, y++) {
for (x=0; x<src->width, x++) {
for (y=0; y<src->height; y++) {
for (x=0; x<src->width; x++) {
/***********************/
/* DO SOMETHING HERE ! */

View File

@ -36,6 +36,9 @@ foo = fimg_clear(&dst);
foo = fimg_falsecolors_0(&src, &dst, type, 3.141592654);
foo= fimg_export_picture(&dst, dstfile, 0);
fimg_destroy(&src); fimg_destroy(&dst);
return -1;
}
/* --------------------------------------------------------------------- */