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

Comparing ray/src/util/rcode_norm.c (file contents):
Revision 2.5 by greg, Wed Nov 13 18:17:05 2019 UTC vs.
Revision 2.7 by greg, Wed Feb 12 01:13:01 2020 UTC

# Line 22 | Line 22 | usage_exit(int code)
22   {
23          fputs("Usage: ", stderr);
24          fputs(progname, stderr);
25 <        fputs(" [-h[io]][-H[io]][-f[afd]] [input [output.nrm]]\n", stderr);
25 >        fputs(" [-h[io]][-H[io]][-f[afd]][-x xr -y yr] [input [output.nrm]]\n", stderr);
26          fputs("   Or: ", stderr);
27          fputs(progname, stderr);
28          fputs(" -r [-i][-u][-h[io]][-H[io]][-f[afd]] [input.nrm [output]]\n",
# Line 38 | Line 38 | encode_normals(NORMCODEC *ncp)
38          long    nexpected = (long)ncp->res.xr * ncp->res.yr;
39  
40          if (ncp->inpfmt[0]) {
41 <                if (strstr(ncp->inpfmt, "ascii") != NULL)
41 >                if (!strcmp(ncp->inpfmt, "ascii"))
42                          ncp->format = 'a';
43 <                else if (strstr(ncp->inpfmt, "float") != NULL)
43 >                else if (!strcmp(ncp->inpfmt, "float"))
44                          ncp->format = 'f';
45 <                else if (strstr(ncp->inpfmt, "double") != NULL)
45 >                else if (!strcmp(ncp->inpfmt, "double"))
46                          ncp->format = 'd';
47                  else {
48                          fputs(ncp->inpname, stderr);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines