IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34365


Ignore:
Timestamp:
Aug 29, 2012, 9:52:13 AM (14 years ago)
Author:
bills
Message:

relax assertion failure that was too strict

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageInterpolate.c

    r34089 r34365  
    186186                                       )
    187187{
    188     psAssert(frac >= 0.0 && frac < 1.0, "Pixel fraction is %f", frac);
     188    psAssert(frac >= 0.0 && frac <= 1.0, "Pixel fraction is %f", frac);
    189189    switch (mode) {
    190190      case PS_INTERPOLATE_FLAT:
Note: See TracChangeset for help on using the changeset viewer.