]> git.imager.perl.org - imager.git/commitdiff
simplify XS for i_img_to_pal()
authorTony Cook <tony@develop-help.com>
Thu, 3 Jan 2019 22:38:50 +0000 (09:38 +1100)
committerTony Cook <tony@develop-help.com>
Thu, 3 Jan 2019 22:38:50 +0000 (09:38 +1100)
Imager.xs

index 7017e9a7b5298897f373cc35145ad25c3e3b41b6..0ba1282c51de2ac3cf18f734f2cb8a4f1723493a 100644 (file)
--- a/Imager.xs
+++ b/Imager.xs
@@ -3138,22 +3138,20 @@ i_img_pal_new(x, y, channels, maxpal)
        int     maxpal
 
 Imager::ImgRaw
        int     maxpal
 
 Imager::ImgRaw
-i_img_to_pal(src, quant)
+i_img_to_pal(src, quant_hv)
         Imager::ImgRaw src
         Imager::ImgRaw src
+       HV *quant_hv
       PREINIT:
         HV *hv;
         i_quantize quant;
       CODE:
       PREINIT:
         HV *hv;
         i_quantize quant;
       CODE:
-        if (!SvROK(ST(1)) || ! SvTYPE(SvRV(ST(1))))
-          croak("i_img_to_pal: second argument must be a hash ref");
-        hv = (HV *)SvRV(ST(1));
         memset(&quant, 0, sizeof(quant));
        quant.version = 1;
         quant.mc_size = 256;
         memset(&quant, 0, sizeof(quant));
        quant.version = 1;
         quant.mc_size = 256;
-       ip_handle_quant_opts(aTHX_ &quant, hv);
+       ip_handle_quant_opts(aTHX_ &quant, quant_hv);
         RETVAL = i_img_to_pal(src, &quant);
         if (RETVAL) {
         RETVAL = i_img_to_pal(src, &quant);
         if (RETVAL) {
-          ip_copy_colors_back(aTHX_ hv, &quant);
+          ip_copy_colors_back(aTHX_ quant_hv, &quant);
         }
        ip_cleanup_quant_opts(aTHX_ &quant);
       OUTPUT:
         }
        ip_cleanup_quant_opts(aTHX_ &quant);
       OUTPUT: