IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 19, 2005, 9:20:19 PM (21 years ago)
Author:
eugene
Message:

fixed unit-ed value compile errors

Location:
trunk/Ohana/src/kii/picture
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/kii/picture/CursorOps.c

    r2466 r5386  
    55  double expand;
    66
     7  expand = 1.0;
    78  if (layout[0].expand > 0) {
    89    expand = 1 / (1.0*layout[0].expand);
     
    2223
    2324  /* notice that here, expand is the reciprocal of the expand above */
     25  expand = 1.0;
    2426  if (layout[0].expand > 0) {
    2527    expand = abs(layout[0].expand);
  • trunk/Ohana/src/kii/picture/Remap16.c

    r2466 r5386  
    2626  white2 = 0x00ff & (white >> 8);
    2727
     28  expand = expand_in = expand_out = 1.0;
    2829  if (layout[0].expand == 0) /* set up expansions */
    2930    layout[0].expand = 1;
  • trunk/Ohana/src/kii/picture/Remap24.c

    r2466 r5386  
    2727  white3 = 0x0000ff & (white >> 16);
    2828
     29  expand = expand_in = expand_out = 1.0;
    2930  if (layout[0].expand == 0) /* set up expansions */
    3031    layout[0].expand = 1;
  • trunk/Ohana/src/kii/picture/Remap32.c

    r2466 r5386  
    2020  white = layout[0].white;
    2121
     22  expand = expand_in = expand_out = 1.0;
    2223  if (layout[0].expand == 0) /* set up expansions */
    2324    layout[0].expand = 1;
  • trunk/Ohana/src/kii/picture/Remap8.c

    r2466 r5386  
    2020  white = layout[0].white;
    2121
     22  expand = expand_in = expand_out = 1.0;
    2223  if (layout[0].expand == 0) /* set up expansions */
    2324    layout[0].expand = 1;
Note: See TracChangeset for help on using the changeset viewer.