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

Comparing ray/src/util/rmatrix.c (file contents):
Revision 2.38 by greg, Tue Sep 10 17:22:55 2019 UTC vs.
Revision 2.44 by greg, Thu May 7 18:45:16 2020 UTC

# Line 5 | Line 5 | static const char RCSid[] = "$Id$";
5   * General matrix operations.
6   */
7  
8 #include <stdio.h>
8   #include <stdlib.h>
10 #include <string.h>
11 #include <fcntl.h>
9   #include <errno.h>
10   #include "rtio.h"
11   #include "platform.h"
# Line 103 | Line 100 | get_dminfo(char *s, void *p)
100                  ip->swapin = (nativebigendian() != i);
101                  return(0);
102          }
103 +        if (isexpos(s)) {
104 +                double  d = exposval(s);
105 +                scalecolor(ip->mtx, d);
106 +                return(0);
107 +        }
108 +        if (iscolcor(s)) {
109 +                COLOR   ctmp;
110 +                colcorval(ctmp, s);
111 +                multcolor(ip->mtx, ctmp);
112 +                return(0);
113 +        }
114          if (!formatval(fmt, s)) {
115                  rmx_addinfo(ip, s);
116                  return(0);
# Line 153 | Line 161 | rmx_load_float(RMATRIX *rm, FILE *fp)
161   static int
162   rmx_load_double(RMATRIX *rm, FILE *fp)
163   {
164 <        int     i, j;
164 >        int     i;
165  
166 <        for (i = 0; i < rm->nrows; i++)
167 <            for (j = 0; j < rm->ncols; j++) {
168 <                if (getbinary(&rmx_lval(rm,i,j,0), sizeof(double), rm->ncomp, fp) != rm->ncomp)
169 <                    return(0);
166 >        if ((char *)&rmx_lval(rm,1,0,0) - (char *)&rmx_lval(rm,0,0,0) !=
167 >                                        sizeof(double)*rm->ncols*rm->ncomp) {
168 >                fputs("Code error in rmx_load_double()\n", stderr);
169 >                exit(1);
170 >        }
171 >        for (i = 0; i < rm->nrows; i++) {
172 >                if (getbinary(&rmx_lval(rm,i,0,0), sizeof(double)*rm->ncomp,
173 >                                        rm->ncols, fp) != rm->ncols)
174 >                        return(0);
175                  if (rm->swapin)
176 <                    swap64((char *)&rmx_lval(rm,i,j,0), rm->ncomp);
177 <            }
176 >                        swap64((char *)&rmx_lval(rm,i,0,0), rm->ncols*rm->ncomp);
177 >        }
178          return(1);
179   }
180  
# Line 229 | Line 242 | rmx_load(const char *inspec)
242          dinfo.dtype = DTascii;                  /* assumed w/o FORMAT */
243          dinfo.swapin = 0;
244          dinfo.info = NULL;
245 +        dinfo.mtx[0] = dinfo.mtx[1] = dinfo.mtx[2] = 1.;
246          if (getheader(fp, get_dminfo, &dinfo) < 0) {
247                  fclose(fp);
248                  return(NULL);
# Line 275 | Line 289 | rmx_load(const char *inspec)
289          case DTxyze:
290                  if (!rmx_load_rgbe(dnew, fp))
291                          goto loaderr;
292 <                dnew->dtype = dinfo.dtype;
292 >                dnew->dtype = dinfo.dtype;      /* undo exposure? */
293 >                if ((dinfo.mtx[0] != 1.) | (dinfo.mtx[1] != 1.) |
294 >                                (dinfo.mtx[2] != 1.)) {
295 >                        dinfo.mtx[0] = 1./dinfo.mtx[0];
296 >                        dinfo.mtx[1] = 1./dinfo.mtx[1];
297 >                        dinfo.mtx[2] = 1./dinfo.mtx[2];
298 >                        rmx_scale(dnew, dinfo.mtx);
299 >                }
300                  break;
301          default:
302                  goto loaderr;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines