Home | History | Annotate | Download | only in benchmark

Lines Matching full:imgout

5187 +  FILE *imgout = fopen(filename, "w");
5189 + if (imgout == NULL) {
5195 + fprintf(imgout, "P6\n%d %d\n255\n", width, height);
5197 + fprintf(imgout, "P5\n%d %d\n255\n", width, height);
5201 + fwrite(image, sizeof(ImageTypeBase), numChannels*width*height, imgout);
5203 + fclose(imgout);