X-Git-Url: http://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/430be3ec2f86aec28fa21558b3141a2e28efd848..594902a517f5a77535a2d7bb903f8e1de358edf6:/src/imgoutput.h diff --git a/src/imgoutput.h b/src/imgoutput.h index bb0b2a5..62994fd 100644 --- a/src/imgoutput.h +++ b/src/imgoutput.h @@ -5,12 +5,12 @@ typedef int img_output_func(FILE *f, const char *filename, unsigned width, unsigned height, - unsigned char **framedata, unsigned char **mask, + unsigned char *pixels, unsigned char *pixel_mask, struct lbx_colour *palette); img_output_func img_output_pbm, img_output_ppm, img_output_pam; img_output_func img_output_png; -_Bool img_is_masked(unsigned char **mask, unsigned width, unsigned height); +_Bool img_is_masked(unsigned char *mask, unsigned width, unsigned height); #endif