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.21 by greg, Fri May 3 12:01:44 1991 UTC vs.
Revision 1.24 by greg, Thu May 23 12:00:38 1991 UTC

# Line 81 | Line 81 | double  exposure = 1.0;                        /* exposure compensation use
81  
82   int  wrongformat = 0;                   /* input in another format? */
83  
84 int  imready = 0;                       /* is image up? */
85
84   GC      revgc;                          /* graphics context with GXinvert */
85  
86   XRASTER *ourras;                        /* our stored image */
# Line 250 | 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 282 | Line 281 | init()                 /* get data and open window */
281                          |ButtonMotionMask|StructureNotifyMask
282                          |KeyPressMask|ExposureMask);
283          XMapWindow(thedisplay, wind);
285                                /* make sure the image is up */
286        do
287                getevent();
288        while (!imready);
289                                /* store name as ready signal */
290        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
284          return;
285   memerr:
286          quiterr("out of memory");
# Line 394 | Line 387 | getevent()                             /* process the next event */
387                  break;
388          case Expose:
389                  redraw(e.e.x, e.e.y, e.e.width, e.e.height);
397                imready++;
390                  break;
391          case ButtonPress:
392                  if (e.b.state & (ShiftMask|ControlMask))
# Line 629 | 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 644 | 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 665 | Line 659 | COLR  *scan;
659          static char  *dp;
660          register int  err;
661          register int    x, ti;
662 +        int  errp;
663  
664          if (iconheight == 0) {          /* initialize */
665                  if (xmax <= ICONSIZ && ymax <= ICONSIZ) {
# Line 673 | Line 668 | COLR  *scan;
668                  } else if (xmax > ymax) {
669                          iconwidth = ICONSIZ;
670                          iconheight = ICONSIZ*ymax/xmax;
671 +                        if (iconheight < 1)
672 +                                iconheight = 1;
673                  } else {
674                          iconwidth = ICONSIZ*xmax/ymax;
675 +                        if (iconwidth < 1)
676 +                                iconwidth = 1;
677                          iconheight = ICONSIZ;
678                  }
679                  ynext = 0;
# Line 686 | Line 685 | COLR  *scan;
685          for (x = 0; x < iconwidth; x++) {
686                  if (!(x&7))
687                          *++dp = 0;
688 +                errp = err;
689                  ti = x*xmax/iconwidth;
690                  err += normbright(scan[ti]) + cerr[x];
691                  if (err > 127)
692                          err -= 255;
693                  else
694                          *dp |= 1<<(x&07);
695 <                cerr[x] = err >>= 1;
695 >                err /= 3;
696 >                cerr[x] = err + errp;
697          }
698          ynext++;
699   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines