]> git.imager.perl.org - imager.git/blobdiff - trans2.c
handle failure to clone the log filehandle when cloning the Imager context
[imager.git] / trans2.c
index daf74b0591d20110a3988322f5293375cd3e961e..b1656f9410e41e997d4673db0270e59d9b06f50a 100644 (file)
--- a/trans2.c
+++ b/trans2.c
@@ -1,4 +1,4 @@
-#include "image.h"
+#include "imager.h"
 #include "regmach.h"
 
 /*
@@ -29,14 +29,14 @@ over the image - most of the work is done in L<regmach.c>
 =cut
 */
 
-i_img* i_transform2(int width, int height, int channels,
+i_img* i_transform2(i_img_dim width, i_img_dim height, int channels,
                    struct rm_op *ops, int ops_count, 
                    double *n_regs, int n_regs_count, 
                    i_color *c_regs, int c_regs_count, 
                    i_img **in_imgs, int in_imgs_count)
 {
   i_img *new_img;
-  int x, y;
+  i_img_dim x, y;
   i_color val;
   int i;
   int need_images;