/* * FloatImg : some dithering experiments */ #include #include #include #include #include #include "../floatimg.h" extern int verbosity; /* --------------------------------------------------------------------- */ int fimg_dither_0(FloatImg *psrc, FloatImg *pdst, int flags) { int x, y; for (y=0; yheight; y++) { for (x=0; xwidth; x++) { /* PLEASE DO SOMETHING HERE */ } } return -1; } /* --------------------------------------------------------------------- */