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

Comparing ray/src/px/pcond3.c (file contents):
Revision 3.16 by greg, Fri Aug 21 05:48:28 2015 UTC vs.
Revision 3.17 by greg, Thu Nov 30 18:43:05 2017 UTC

# Line 190 | Line 190 | comphist(void)                 /* create foveal sampling histogram *
190          for (y = 0; y < fvyr; y++)
191                  for (x = 0; x < fvxr; x++) {
192                          l = plum(fovscan(y)[x]);
193 <                        if ((l < lwmin) & (l > LMIN)) lwmin = l;
194 <                        if ((l > lwmax) & (l < LMAX)) lwmax = l;
193 >                        if (l < lwmin) lwmin = l;
194 >                        if (l > lwmax) lwmax = l;
195                  }
196          lwmax *= 1.01;
197          if (lwmax > LMAX)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines