making the doc

This commit is contained in:
tTh
2019-05-20 08:47:13 +02:00
parent 5564b24c54
commit 5b3381c7b3
3 changed files with 48 additions and 2 deletions

View File

@@ -9,7 +9,22 @@
/* -------------------------------------------------------------------- */
int fimg_lissage_2x2(FloatImg *img)
{
int x, y, offset;
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
fprintf(stderr," type %s size %dx%d\n", img->type,
img->width, img->height);
#endif
for (y=1; y<img->height; y++) {
for (x=1; x<img->width; x++) {
offset = x + (y * img->width);
}
}
return -1;
}