changeset 162:632cce09e7c5

Remove debug messages
author pkienzle
date Wed, 12 Oct 2005 15:05:29 +0000
parents bff4bbb1b9fc
children ccfeb2a529bc
files pngwrite.cc
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pngwrite.cc
+++ b/pngwrite.cc
@@ -90,14 +90,12 @@
        return retval;
      }
    
-   octave_stdout << "we reached point A" << std::endl;
    canvas *pic=new_canvas(image_width, image_height, image_width*4);
    if (!pic) {
        error("pngwrite out of memory");
        return retval;
    }
 
-   octave_stdout << "we reached point B" << std::endl;
    for(int i=0; i < pic->width; i++) {
        for(int j=0; j < pic->height; j++) {
 	   pic->row_pointers[j][i*4+0]=(unsigned char)(red(j,i));
@@ -107,7 +105,6 @@
        }
    }
    
-   octave_stdout << "we reached point C" << std::endl;
 
    save_canvas(pic,(char *)args(0).string_value().c_str());
    delete_canvas(pic);