ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/x11image.c
(Generate patch)

Comparing ray/src/px/x11image.c (file contents):
Revision 1.19 by greg, Fri May 3 09:54:31 1991 UTC vs.
Revision 1.23 by greg, Mon May 6 13:14:17 1991 UTC

# Line 248 | Line 248 | init()                 /* get data and open window */
248          XSetFunction(thedisplay, revgc, GXinvert);
249          XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay,
250                          XC_diamond_cross));
251 +        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
252          if (geometry != NULL) {
253                  bzero((char *)&oursizhints, sizeof(oursizhints));
254                  i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y,
# Line 280 | Line 281 | init()                 /* get data and open window */
281                          |ButtonMotionMask|StructureNotifyMask
282                          |KeyPressMask|ExposureMask);
283          XMapWindow(thedisplay, wind);
283                                /* store name last as ready signal */
284        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
284          return;
285   memerr:
286          quiterr("out of memory");
# Line 622 | Line 621 | getmono()                      /* get monochrome data */
621   {
622          register unsigned char  *dp;
623          register int    x, err;
624 <        int     y;
624 >        int     y, errp;
625          short   *cerr;
626  
627          if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
# Line 637 | Line 636 | getmono()                      /* get monochrome data */
636                  for (x = 0; x < xmax; x++) {
637                          if (!(x&7))
638                                  *++dp = 0;
639 +                        errp = err;
640                          err += normbright(scanline[x]) + cerr[x];
641                          if (err > 127)
642                                  err -= 255;
643                          else
644                                  *dp |= 1<<(7-(x&07));
645 <                        cerr[x] = err >>= 1;
645 >                        err /= 3;
646 >                        cerr[x] = err + errp;
647                  }
648          }
649          free((char *)cerr);
# Line 653 | Line 654 | add2icon(y, scan)              /* add a scanline to our icon data
654   int  y;
655   COLR  *scan;
656   {
656        static char  *dp = NULL;
657          static short  cerr[ICONSIZ];
658 +        static int  ynext;
659 +        static char  *dp;
660          register int  err;
661 <        register int    x, xi;
661 >        register int    x, ti;
662 >        int  errp;
663  
664          if (iconheight == 0) {          /* initialize */
665                  if (xmax <= ICONSIZ && ymax <= ICONSIZ) {
# Line 669 | Line 672 | COLR  *scan;
672                          iconwidth = ICONSIZ*xmax/ymax;
673                          iconheight = ICONSIZ;
674                  }
675 +                ynext = 0;
676                  dp = icondata - 1;
677          }
678 <        if (dp == NULL)                 /* done already */
678 >        if (y < ynext*ymax/iconheight)  /* skip this one */
679                  return;
676        if (y % (ymax/iconheight))      /* skip this one */
677                return;
680          err = 0;
681          for (x = 0; x < iconwidth; x++) {
682                  if (!(x&7))
683                          *++dp = 0;
684 <                xi = x*xmax/iconwidth;
685 <                err += normbright(scan[xi]) + cerr[x];
684 >                errp = err;
685 >                ti = x*xmax/iconwidth;
686 >                err += normbright(scan[ti]) + cerr[x];
687                  if (err > 127)
688                          err -= 255;
689                  else
690                          *dp |= 1<<(x&07);
691 <                cerr[x] = err >>= 1;
691 >                err /= 3;
692 >                cerr[x] = err + errp;
693          }
694 <        if (y >= ymax - ymax/iconheight)        /* all done */
691 <                dp = NULL;
694 >        ynext++;
695   }
696  
697  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines